結果

問題 No.676 C0nvertPr0b1em
ユーザー NoaSaberNoaSaber
提出日時 2021-03-17 22:58:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 53,636 KB
最終ジャッジ日時 2024-04-27 14:55:20
合計ジャッジ時間 2,132 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,424 KB
testcase_01 AC 35 ms
52,340 KB
testcase_02 AC 34 ms
52,428 KB
testcase_03 AC 33 ms
53,636 KB
testcase_04 AC 34 ms
53,092 KB
testcase_05 AC 34 ms
52,636 KB
testcase_06 AC 33 ms
52,660 KB
testcase_07 AC 34 ms
52,364 KB
testcase_08 AC 36 ms
52,084 KB
testcase_09 AC 35 ms
52,940 KB
testcase_10 AC 34 ms
52,752 KB
testcase_11 AC 35 ms
52,960 KB
testcase_12 AC 33 ms
52,408 KB
testcase_13 AC 33 ms
52,160 KB
testcase_14 AC 33 ms
52,948 KB
testcase_15 AC 37 ms
51,692 KB
testcase_16 AC 35 ms
52,820 KB
testcase_17 AC 34 ms
52,940 KB
testcase_18 AC 33 ms
52,152 KB
testcase_19 AC 34 ms
51,696 KB
testcase_20 AC 34 ms
51,872 KB
testcase_21 AC 33 ms
52,712 KB
testcase_22 AC 34 ms
53,428 KB
testcase_23 AC 34 ms
53,200 KB
testcase_24 AC 33 ms
52,876 KB
testcase_25 AC 34 ms
53,472 KB
testcase_26 AC 32 ms
52,880 KB
testcase_27 AC 34 ms
52,624 KB
testcase_28 AC 34 ms
52,044 KB
testcase_29 AC 35 ms
52,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=input()
ans=""
for i in T:
    if i=="I" or i=="l":
        ans+="1"
    elif i=="O" or i=="o":
        ans+="0"
    else:
        ans+=i
print(ans)
0