結果
| 問題 | No.676 C0nvertPr0b1em |
| コンテスト | |
| ユーザー |
maspy
|
| 提出日時 | 2020-01-09 23:35:53 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 156 ms / 2,000 ms |
| コード長 | 224 bytes |
| 記録 | |
| コンパイル時間 | 538 ms |
| コンパイル使用メモリ | 20,704 KB |
| 実行使用メモリ | 15,356 KB |
| 最終ジャッジ日時 | 2026-05-17 02:09:53 |
| 合計ジャッジ時間 | 6,456 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
ソースコード
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
S = read().rstrip().decode('utf-8')
for x,y in ['I1', 'l1', 'O0', 'o0']:
S = S.replace(x, y)
print(S)
maspy