結果

問題 No.676 C0nvertPr0b1em
ユーザー KoichiHiraiKoichiHirai
提出日時 2018-05-08 16:44:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 70,992 KB
実行使用メモリ 55,948 KB
最終ジャッジ日時 2023-09-05 17:13:29
合計ジャッジ時間 6,905 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
55,708 KB
testcase_01 AC 122 ms
55,456 KB
testcase_02 AC 124 ms
55,664 KB
testcase_03 AC 124 ms
55,948 KB
testcase_04 AC 125 ms
55,784 KB
testcase_05 AC 125 ms
55,904 KB
testcase_06 AC 124 ms
55,784 KB
testcase_07 AC 124 ms
55,452 KB
testcase_08 AC 128 ms
55,848 KB
testcase_09 AC 125 ms
55,580 KB
testcase_10 AC 126 ms
55,584 KB
testcase_11 AC 124 ms
55,620 KB
testcase_12 AC 124 ms
55,640 KB
testcase_13 AC 124 ms
55,676 KB
testcase_14 AC 121 ms
55,772 KB
testcase_15 AC 124 ms
55,624 KB
testcase_16 AC 126 ms
55,676 KB
testcase_17 AC 122 ms
55,860 KB
testcase_18 AC 122 ms
55,700 KB
testcase_19 AC 127 ms
55,348 KB
testcase_20 AC 124 ms
55,664 KB
testcase_21 AC 123 ms
55,824 KB
testcase_22 AC 128 ms
55,804 KB
testcase_23 AC 119 ms
55,312 KB
testcase_24 AC 120 ms
55,564 KB
testcase_25 AC 118 ms
55,364 KB
testcase_26 AC 119 ms
55,604 KB
testcase_27 AC 121 ms
55,584 KB
testcase_28 AC 119 ms
55,560 KB
testcase_29 AC 121 ms
55,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
//public class Yukicoder_676{
	public static void main(String[] args){
		//String s = args[0];
		
		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