結果
| 問題 | No.676 C0nvertPr0b1em |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-07 10:40:41 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 39 ms / 2,000 ms |
| コード長 | 176 bytes |
| 記録 | |
| コンパイル時間 | 268 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 52,608 KB |
| 最終ジャッジ日時 | 2026-05-08 23:00:42 |
| 合計ジャッジ時間 | 3,775 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
ソースコード
s = input()
result = ''
for si in s:
if si=="I" or si=="l":
result+="1"
elif si=="O" or si=="o":
result+="0"
else:
result+=si
print(result)