結果

問題 No.676 C0nvertPr0b1em
ユーザー rabirabi
提出日時 2019-06-24 16:35:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 5,188 ms
コンパイル使用メモリ 70,996 KB
実行使用メモリ 50,128 KB
最終ジャッジ日時 2023-09-02 11:43:25
合計ジャッジ時間 6,573 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,028 KB
testcase_01 AC 51 ms
50,048 KB
testcase_02 AC 52 ms
49,716 KB
testcase_03 AC 53 ms
49,676 KB
testcase_04 AC 52 ms
49,892 KB
testcase_05 AC 52 ms
49,724 KB
testcase_06 AC 51 ms
49,744 KB
testcase_07 AC 52 ms
49,872 KB
testcase_08 AC 50 ms
49,728 KB
testcase_09 AC 49 ms
49,756 KB
testcase_10 AC 53 ms
47,896 KB
testcase_11 AC 53 ms
49,884 KB
testcase_12 AC 52 ms
49,876 KB
testcase_13 AC 52 ms
50,008 KB
testcase_14 AC 49 ms
49,944 KB
testcase_15 AC 50 ms
49,688 KB
testcase_16 AC 52 ms
50,044 KB
testcase_17 AC 50 ms
49,768 KB
testcase_18 AC 49 ms
49,648 KB
testcase_19 AC 49 ms
49,720 KB
testcase_20 AC 52 ms
49,792 KB
testcase_21 AC 51 ms
49,616 KB
testcase_22 AC 54 ms
47,792 KB
testcase_23 AC 50 ms
50,116 KB
testcase_24 AC 50 ms
49,620 KB
testcase_25 AC 49 ms
49,884 KB
testcase_26 AC 48 ms
50,128 KB
testcase_27 AC 48 ms
49,748 KB
testcase_28 AC 49 ms
49,820 KB
testcase_29 AC 50 ms
49,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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