結果

問題 No.676 C0nvertPr0b1em
ユーザー YOSHIYOSHI
提出日時 2021-06-17 19:50:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 3,114 ms
コンパイル使用メモリ 71,512 KB
実行使用メモリ 50,212 KB
最終ジャッジ日時 2023-09-01 23:08:37
合計ジャッジ時間 6,577 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,024 KB
testcase_01 AC 50 ms
49,936 KB
testcase_02 AC 50 ms
50,212 KB
testcase_03 AC 52 ms
49,824 KB
testcase_04 AC 52 ms
50,140 KB
testcase_05 AC 52 ms
49,864 KB
testcase_06 AC 50 ms
49,668 KB
testcase_07 AC 51 ms
48,200 KB
testcase_08 AC 51 ms
50,136 KB
testcase_09 AC 49 ms
50,212 KB
testcase_10 AC 53 ms
49,768 KB
testcase_11 AC 53 ms
49,792 KB
testcase_12 AC 52 ms
49,780 KB
testcase_13 AC 51 ms
49,828 KB
testcase_14 AC 50 ms
49,636 KB
testcase_15 AC 51 ms
49,820 KB
testcase_16 AC 52 ms
49,936 KB
testcase_17 AC 51 ms
49,884 KB
testcase_18 AC 51 ms
49,780 KB
testcase_19 AC 50 ms
49,836 KB
testcase_20 AC 53 ms
49,780 KB
testcase_21 AC 51 ms
49,864 KB
testcase_22 AC 54 ms
49,804 KB
testcase_23 AC 47 ms
49,792 KB
testcase_24 AC 49 ms
49,688 KB
testcase_25 AC 49 ms
49,692 KB
testcase_26 AC 49 ms
49,620 KB
testcase_27 AC 49 ms
49,856 KB
testcase_28 AC 52 ms
49,696 KB
testcase_29 AC 49 ms
50,200 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