結果
| 問題 | No.676 C0nvertPr0b1em | 
| コンテスト | |
| ユーザー |  lam6er | 
| 提出日時 | 2025-03-20 20:33:38 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 39 ms / 2,000 ms | 
| コード長 | 205 bytes | 
| コンパイル時間 | 147 ms | 
| コンパイル使用メモリ | 82,456 KB | 
| 実行使用メモリ | 53,964 KB | 
| 最終ジャッジ日時 | 2025-03-20 20:35:08 | 
| 合計ジャッジ時間 | 2,104 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 30 | 
ソースコード
s = input().strip()
result = []
for c in s:
    if c in {'I', 'l'}:
        result.append('1')
    elif c in {'O', 'o'}:
        result.append('0')
    else:
        result.append(c)
print(''.join(result))
            
            
            
        