結果

問題 No.2226 Hello, Forgotten World!
ユーザー atcoder8atcoder8
提出日時 2023-02-24 21:52:46
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,382 bytes
コンパイル時間 12,458 ms
コンパイル使用メモリ 404,504 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-13 05:23:57
合計ジャッジ時間 13,121 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,816 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let t = {
        let mut line = String::new();
        std::io::stdin().read_line(&mut line).unwrap();
        line.trim().parse::<usize>().unwrap()
    };

    for _ in 0..t {
        if let Some(ans) = solve() {
            println!("{}", ans);
        } else {
            println!("-1");
        }
    }
}

fn solve() -> Option<String> {
    let _n = {
        let mut line = String::new();
        std::io::stdin().read_line(&mut line).unwrap();
        line.trim().parse::<usize>().unwrap()
    };
    let s: Vec<char> = {
        let mut line = String::new();
        std::io::stdin().read_line(&mut line).unwrap();
        line.trim().chars().collect()
    };

    let target_chars: Vec<char> = "helloworld".chars().collect();

    let is_match = |start_idx: usize| {
        for (i, &c) in target_chars.iter().enumerate() {
            if s[start_idx + i] != '?' && s[start_idx + i] != c {
                return false;
            }
        }

        true
    };

    for start_idx in (0..(s.len() - target_chars.len() + 1)).rev() {
        if is_match(start_idx) {
            let mut ans: Vec<char> = s.iter().map(|&c| if c == '?' { 'a' } else { c }).collect();

            for i in 0..target_chars.len() {
                ans[start_idx + i] = target_chars[i];
            }

            return Some(ans.iter().collect());
        }
    }

    None
}
0