結果

問題 No.676 C0nvertPr0b1em
ユーザー tsunabittsunabit
提出日時 2018-07-29 14:00:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 3,308 ms
コンパイル使用メモリ 75,316 KB
実行使用メモリ 41,808 KB
最終ジャッジ日時 2024-06-23 12:52:43
合計ジャッジ時間 8,117 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,420 KB
testcase_01 AC 127 ms
41,140 KB
testcase_02 AC 120 ms
41,164 KB
testcase_03 AC 119 ms
41,028 KB
testcase_04 AC 106 ms
40,236 KB
testcase_05 AC 121 ms
41,332 KB
testcase_06 AC 128 ms
41,496 KB
testcase_07 AC 128 ms
41,336 KB
testcase_08 AC 104 ms
39,872 KB
testcase_09 AC 121 ms
41,264 KB
testcase_10 AC 126 ms
41,000 KB
testcase_11 AC 130 ms
41,460 KB
testcase_12 AC 129 ms
41,160 KB
testcase_13 AC 129 ms
41,808 KB
testcase_14 AC 109 ms
41,128 KB
testcase_15 AC 126 ms
41,160 KB
testcase_16 AC 121 ms
41,000 KB
testcase_17 AC 128 ms
41,128 KB
testcase_18 AC 123 ms
41,244 KB
testcase_19 AC 122 ms
41,400 KB
testcase_20 AC 125 ms
41,204 KB
testcase_21 AC 120 ms
40,968 KB
testcase_22 AC 110 ms
39,856 KB
testcase_23 AC 113 ms
41,600 KB
testcase_24 AC 112 ms
41,160 KB
testcase_25 AC 118 ms
41,460 KB
testcase_26 AC 106 ms
40,116 KB
testcase_27 AC 124 ms
41,304 KB
testcase_28 AC 120 ms
41,276 KB
testcase_29 AC 117 ms
40,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

public class No676 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		String s = sc.next();
        s = s.replace("I" , "1");
        s = s.replace("l" , "1");
        s = s.replace("O" , "0");
        s = s.replace("o" , "0");
        System.out.println(s);
	}
}
0