結果

問題 No.676 C0nvertPr0b1em
ユーザー YOSHIYOSHI
提出日時 2021-06-17 19:50:01
言語 Java
(openjdk 23)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 3,880 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 38,460 KB
最終ジャッジ日時 2025-01-03 11:15:45
合計ジャッジ時間 6,838 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
38,400 KB
testcase_01 AC 60 ms
38,272 KB
testcase_02 AC 64 ms
38,400 KB
testcase_03 AC 60 ms
38,260 KB
testcase_04 AC 60 ms
38,212 KB
testcase_05 AC 61 ms
38,272 KB
testcase_06 AC 59 ms
38,244 KB
testcase_07 AC 60 ms
38,240 KB
testcase_08 AC 62 ms
38,100 KB
testcase_09 AC 61 ms
38,400 KB
testcase_10 AC 62 ms
38,460 KB
testcase_11 AC 62 ms
38,224 KB
testcase_12 AC 65 ms
38,356 KB
testcase_13 AC 63 ms
38,340 KB
testcase_14 AC 57 ms
38,228 KB
testcase_15 AC 58 ms
38,272 KB
testcase_16 AC 67 ms
38,376 KB
testcase_17 AC 62 ms
38,224 KB
testcase_18 AC 62 ms
38,112 KB
testcase_19 AC 62 ms
38,356 KB
testcase_20 AC 63 ms
38,228 KB
testcase_21 AC 61 ms
38,132 KB
testcase_22 AC 63 ms
38,272 KB
testcase_23 AC 62 ms
38,372 KB
testcase_24 AC 64 ms
38,104 KB
testcase_25 AC 64 ms
38,272 KB
testcase_26 AC 63 ms
38,336 KB
testcase_27 AC 60 ms
38,396 KB
testcase_28 AC 58 ms
38,104 KB
testcase_29 AC 61 ms
38,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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