結果
| 問題 | No.676 C0nvertPr0b1em | 
| コンテスト | |
| ユーザー |  tak | 
| 提出日時 | 2018-05-11 00:25:07 | 
| 言語 | F# (F# 4.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 70 ms / 2,000 ms | 
| コード長 | 206 bytes | 
| コンパイル時間 | 10,071 ms | 
| コンパイル使用メモリ | 188,568 KB | 
| 実行使用メモリ | 30,464 KB | 
| 最終ジャッジ日時 | 2024-06-23 12:45:03 | 
| 合計ジャッジ時間 | 10,624 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 30 | 
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (237 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
let converter = function
    | 'I' | 'l' -> '1'
    | 'O' | 'o' -> '0'
    | x -> x
    
let S = stdin.ReadLine()
S.ToCharArray()
|> Array.map converter
|> fun arr -> new System.String (arr)
|> printf "%s"
            
            
            
        