結果

問題 No.676 C0nvertPr0b1em
ユーザー 𖧱𖦸𖥩𖥣𖥩𖥣
提出日時 2024-02-01 17:38:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 121 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 81,644 KB
実行使用メモリ 58,112 KB
最終ジャッジ日時 2024-09-28 10:30:53
合計ジャッジ時間 2,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
t = ""
for i in s:
	if i in ["o", "O"]:
		t += "0"
	elif i in ["I", "l"]:
		t += "1"
	else:
		t += i
print(t)
0