結果

問題 No.676 C0nvertPr0b1em
ユーザー nasubi24
提出日時 2020-11-02 18:39:45
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-07-22 06:36:11
合計ジャッジ時間 2,216 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
ans=""
for i in range(len(s)):
    if s[i]=="I" or s[i]=="l":
        ans+="1"
    elif s[i]=="O" or s[i]=="o":
        ans+="0"
    else:
        ans+=s[i]
print(ans)
0