結果

問題 No.676 C0nvertPr0b1em
ユーザー CroweaCrowea
提出日時 2019-01-21 13:08:40
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 819 ms
コンパイル使用メモリ 65,000 KB
実行使用メモリ 22,576 KB
最終ジャッジ日時 2023-09-05 17:28:51
合計ジャッジ時間 3,723 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
20,412 KB
testcase_01 AC 51 ms
20,452 KB
testcase_02 AC 51 ms
20,460 KB
testcase_03 AC 50 ms
20,456 KB
testcase_04 AC 50 ms
18,456 KB
testcase_05 AC 51 ms
20,628 KB
testcase_06 AC 51 ms
20,476 KB
testcase_07 AC 51 ms
20,460 KB
testcase_08 AC 50 ms
20,572 KB
testcase_09 AC 50 ms
20,456 KB
testcase_10 AC 52 ms
22,532 KB
testcase_11 AC 50 ms
20,492 KB
testcase_12 AC 50 ms
18,468 KB
testcase_13 AC 52 ms
22,448 KB
testcase_14 AC 51 ms
22,484 KB
testcase_15 AC 52 ms
22,576 KB
testcase_16 AC 51 ms
20,484 KB
testcase_17 AC 51 ms
20,452 KB
testcase_18 AC 51 ms
18,440 KB
testcase_19 AC 50 ms
20,416 KB
testcase_20 AC 50 ms
18,492 KB
testcase_21 AC 51 ms
20,600 KB
testcase_22 AC 51 ms
20,380 KB
testcase_23 AC 50 ms
22,456 KB
testcase_24 AC 50 ms
22,508 KB
testcase_25 AC 51 ms
20,472 KB
testcase_26 AC 50 ms
18,480 KB
testcase_27 AC 50 ms
20,520 KB
testcase_28 AC 50 ms
20,364 KB
testcase_29 AC 50 ms
20,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

class Program
{

    static void Main(string[] args)
    {
        var input = Console.ReadLine();
        var output = input.Replace("I", "1").Replace("l", "1").Replace("O", "0").Replace("o", "0");
        Console.WriteLine(output);
    }
}

0