結果

問題 No.676 C0nvertPr0b1em
ユーザー face4face4
提出日時 2018-04-27 22:22:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 1,915 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 50,636 KB
最終ジャッジ日時 2024-06-23 12:29:49
合計ジャッジ時間 4,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,500 KB
testcase_01 AC 57 ms
50,480 KB
testcase_02 AC 58 ms
50,352 KB
testcase_03 AC 58 ms
50,548 KB
testcase_04 AC 59 ms
50,460 KB
testcase_05 AC 58 ms
50,604 KB
testcase_06 AC 57 ms
50,504 KB
testcase_07 AC 58 ms
50,636 KB
testcase_08 AC 57 ms
50,496 KB
testcase_09 AC 56 ms
50,500 KB
testcase_10 AC 58 ms
50,260 KB
testcase_11 AC 59 ms
50,200 KB
testcase_12 AC 58 ms
50,548 KB
testcase_13 AC 57 ms
50,612 KB
testcase_14 AC 56 ms
50,504 KB
testcase_15 AC 68 ms
50,332 KB
testcase_16 AC 59 ms
50,300 KB
testcase_17 AC 57 ms
50,544 KB
testcase_18 AC 57 ms
50,424 KB
testcase_19 AC 58 ms
50,476 KB
testcase_20 AC 57 ms
50,588 KB
testcase_21 AC 58 ms
50,460 KB
testcase_22 AC 59 ms
50,548 KB
testcase_23 AC 57 ms
50,456 KB
testcase_24 AC 58 ms
50,476 KB
testcase_25 AC 57 ms
50,256 KB
testcase_26 AC 57 ms
50,500 KB
testcase_27 AC 57 ms
50,488 KB
testcase_28 AC 58 ms
50,220 KB
testcase_29 AC 56 ms
50,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;

class Main{
    public static void main(String[] args) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String s = br.readLine();
        s = s.replaceAll("I", "1");
        s = s.replaceAll("l", "1");
        s = s.replaceAll("O", "0");
        s = s.replaceAll("o", "0");
        System.out.println(s);
    }
}
0