結果

問題 No.676 C0nvertPr0b1em
ユーザー KoichiHiraiKoichiHirai
提出日時 2018-05-08 16:44:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 1,914 ms
コンパイル使用メモリ 73,780 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-06-23 12:43:31
合計ジャッジ時間 6,562 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,088 KB
testcase_01 AC 110 ms
40,252 KB
testcase_02 AC 123 ms
41,396 KB
testcase_03 AC 129 ms
41,284 KB
testcase_04 AC 118 ms
40,900 KB
testcase_05 AC 128 ms
41,416 KB
testcase_06 AC 128 ms
41,300 KB
testcase_07 AC 128 ms
41,360 KB
testcase_08 AC 125 ms
41,164 KB
testcase_09 AC 128 ms
41,452 KB
testcase_10 AC 129 ms
41,516 KB
testcase_11 AC 127 ms
41,204 KB
testcase_12 AC 122 ms
41,420 KB
testcase_13 AC 122 ms
41,156 KB
testcase_14 AC 122 ms
41,352 KB
testcase_15 AC 129 ms
41,420 KB
testcase_16 AC 128 ms
41,328 KB
testcase_17 AC 125 ms
41,276 KB
testcase_18 AC 120 ms
41,552 KB
testcase_19 AC 112 ms
41,404 KB
testcase_20 AC 116 ms
40,960 KB
testcase_21 AC 109 ms
39,900 KB
testcase_22 AC 125 ms
41,128 KB
testcase_23 AC 120 ms
41,136 KB
testcase_24 AC 126 ms
41,632 KB
testcase_25 AC 115 ms
41,256 KB
testcase_26 AC 107 ms
40,280 KB
testcase_27 AC 105 ms
40,140 KB
testcase_28 AC 118 ms
41,692 KB
testcase_29 AC 112 ms
41,044 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