結果
| 問題 | No.3261 yiwiy9 → yiwiY9 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-09-06 13:25:12 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 202 bytes |
| コンパイル時間 | 264 ms |
| コンパイル使用メモリ | 82,560 KB |
| 実行使用メモリ | 53,504 KB |
| 最終ジャッジ日時 | 2025-09-06 13:25:48 |
| 合計ジャッジ時間 | 2,557 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 WA * 17 |
ソースコード
H, W = map(int, input().split())
G = [input() for _ in range(H)]
ANS = []
for s in G:
s = s.replace("yiwiy9", "yiwiY9")
s = s.replace("9yiwiy", "9Yiwiy")
ANS.append(s)
print(*ANS, sep="\n")