結果

問題 No.3261 yiwiy9 → yiwiY9
ユーザー The_Bouningeeeen
提出日時 2025-09-08 21:49:18
言語 Rust
(1.83.0 + proconio)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 13,475 ms
コンパイル使用メモリ 384,500 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2025-09-08 21:49:33
合計ジャッジ時間 12,389 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12 WA * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
    input! {
        h: usize,
        _w: usize,
        mut s: [String; h],
    }

    for i in 0..h {
        s[i] = s[i].replace("yiwiy9", "yiwiY9");
        s[i] = s[i].replace("9yiwiy", "9Yiwiy");
        println!("{}", s[i]);
    }
}
0