結果
| 問題 |
No.3261 yiwiy9 → yiwiY9
|
| コンテスト | |
| ユーザー |
SourCreamOnion
|
| 提出日時 | 2025-09-06 14:16:41 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 157 bytes |
| コンパイル時間 | 257 ms |
| コンパイル使用メモリ | 82,296 KB |
| 実行使用メモリ | 53,408 KB |
| 最終ジャッジ日時 | 2025-09-06 14:16:49 |
| 合計ジャッジ時間 | 2,421 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 WA * 17 |
ソースコード
H, W = map(int, input().split())
for _ in range(H):
s = input()
s = s.replace("yiwiy9", "yiwiY9")
s = s.replace("9yiwiy", "9Yiwiy")
print(s)
SourCreamOnion