結果

問題 No.676 C0nvertPr0b1em
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 10:48:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 73,948 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-06-23 12:59:20
合計ジャッジ時間 6,541 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,104 KB
testcase_01 AC 118 ms
41,528 KB
testcase_02 AC 114 ms
41,024 KB
testcase_03 AC 119 ms
41,412 KB
testcase_04 AC 119 ms
41,088 KB
testcase_05 AC 128 ms
41,016 KB
testcase_06 AC 142 ms
41,388 KB
testcase_07 AC 123 ms
41,644 KB
testcase_08 AC 120 ms
41,208 KB
testcase_09 AC 113 ms
40,900 KB
testcase_10 AC 126 ms
41,472 KB
testcase_11 AC 124 ms
41,664 KB
testcase_12 AC 108 ms
40,008 KB
testcase_13 AC 123 ms
41,372 KB
testcase_14 AC 120 ms
40,052 KB
testcase_15 AC 123 ms
41,668 KB
testcase_16 AC 108 ms
40,044 KB
testcase_17 AC 127 ms
41,212 KB
testcase_18 AC 124 ms
41,692 KB
testcase_19 AC 122 ms
41,168 KB
testcase_20 AC 123 ms
41,148 KB
testcase_21 AC 118 ms
40,608 KB
testcase_22 AC 144 ms
41,276 KB
testcase_23 AC 124 ms
41,020 KB
testcase_24 AC 119 ms
41,080 KB
testcase_25 AC 117 ms
41,240 KB
testcase_26 AC 112 ms
41,112 KB
testcase_27 AC 120 ms
40,872 KB
testcase_28 AC 120 ms
41,396 KB
testcase_29 AC 124 ms
41,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		System.out.println(sc.next().replace("I","1").replace("l","1").replace("O","0").replace("o","0"));
		
	}
}
0