結果

問題 No.2268 NGワード回避
ユーザー atcoder8atcoder8
提出日時 2023-04-14 21:50:39
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 12,338 ms
コンパイル使用メモリ 401,632 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-10-10 12:34:55
合計ジャッジ時間 14,554 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 52
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let n = {
        let mut line = String::new();
        std::io::stdin().read_line(&mut line).unwrap();
        line.trim().parse::<usize>().unwrap()
    };
    let mut ss: Vec<Vec<char>> = vec![];
    for _ in 0..n {
        let mut line = String::new();
        std::io::stdin().read_line(&mut line).unwrap();
        ss.push(line.trim().chars().collect());
    }

    let ans: String = (0..n)
        .map(|i| if ss[i][i] == 'a' { 'b' } else { 'a' })
        .collect();
    println!("{}", ans);
}
0