結果

問題 No.676 C0nvertPr0b1em
ユーザー YOSHIYOSHI
提出日時 2021-06-17 19:50:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 3,616 ms
コンパイル使用メモリ 73,408 KB
実行使用メモリ 37,764 KB
最終ジャッジ日時 2024-06-11 05:13:45
合計ジャッジ時間 5,129 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,484 KB
testcase_01 AC 50 ms
37,356 KB
testcase_02 AC 49 ms
37,764 KB
testcase_03 AC 51 ms
37,640 KB
testcase_04 AC 51 ms
37,272 KB
testcase_05 AC 50 ms
37,208 KB
testcase_06 AC 49 ms
37,208 KB
testcase_07 AC 50 ms
37,648 KB
testcase_08 AC 49 ms
37,228 KB
testcase_09 AC 51 ms
37,520 KB
testcase_10 AC 57 ms
37,604 KB
testcase_11 AC 54 ms
37,088 KB
testcase_12 AC 51 ms
37,052 KB
testcase_13 AC 49 ms
37,628 KB
testcase_14 AC 49 ms
37,232 KB
testcase_15 AC 49 ms
37,396 KB
testcase_16 AC 51 ms
37,344 KB
testcase_17 AC 50 ms
37,596 KB
testcase_18 AC 49 ms
37,504 KB
testcase_19 AC 49 ms
37,204 KB
testcase_20 AC 50 ms
37,492 KB
testcase_21 AC 50 ms
37,648 KB
testcase_22 AC 51 ms
37,100 KB
testcase_23 AC 49 ms
36,972 KB
testcase_24 AC 48 ms
37,224 KB
testcase_25 AC 48 ms
37,484 KB
testcase_26 AC 49 ms
37,580 KB
testcase_27 AC 49 ms
37,308 KB
testcase_28 AC 48 ms
37,204 KB
testcase_29 AC 52 ms
37,620 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