結果
問題 |
No.3261 yiwiy9 → yiwiY9
|
ユーザー |
|
提出日時 | 2025-09-06 13:13:28 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 397 bytes |
コンパイル時間 | 300 ms |
コンパイル使用メモリ | 82,668 KB |
実行使用メモリ | 55,168 KB |
最終ジャッジ日時 | 2025-09-06 13:15:31 |
合計ジャッジ時間 | 2,535 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 WA * 19 |
ソースコード
# 自作ライブラリ # https://github.com/takumi-okamoto/competitive-programming-public/tree/main/mylib import sys # sys.setrecursionlimit(10**8) def debug(*args): print(*args, file=sys.stderr) def main(): h, w = map(int, input().split()) for _ in range(h): s = input() print(s.replace("y9", "Y9").replace("9y", "9Y")) if __name__ == "__main__": main()