結果

問題 No.676 C0nvertPr0b1em
ユーザー YamaKasaYamaKasa
提出日時 2018-05-09 18:06:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 2,396 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 54,652 KB
最終ジャッジ日時 2024-06-23 12:44:40
合計ジャッジ時間 7,843 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,816 KB
testcase_01 AC 137 ms
54,280 KB
testcase_02 AC 147 ms
54,296 KB
testcase_03 AC 175 ms
54,652 KB
testcase_04 AC 166 ms
54,068 KB
testcase_05 AC 171 ms
54,268 KB
testcase_06 AC 148 ms
54,196 KB
testcase_07 AC 160 ms
54,432 KB
testcase_08 AC 137 ms
54,064 KB
testcase_09 AC 128 ms
54,052 KB
testcase_10 AC 161 ms
54,140 KB
testcase_11 AC 174 ms
54,084 KB
testcase_12 AC 168 ms
54,532 KB
testcase_13 AC 145 ms
54,228 KB
testcase_14 AC 133 ms
54,116 KB
testcase_15 AC 148 ms
53,980 KB
testcase_16 AC 171 ms
54,328 KB
testcase_17 AC 147 ms
54,432 KB
testcase_18 AC 138 ms
54,256 KB
testcase_19 AC 133 ms
54,168 KB
testcase_20 AC 159 ms
54,072 KB
testcase_21 AC 148 ms
53,916 KB
testcase_22 AC 178 ms
53,932 KB
testcase_23 AC 124 ms
53,832 KB
testcase_24 AC 124 ms
53,904 KB
testcase_25 AC 124 ms
53,992 KB
testcase_26 AC 123 ms
54,212 KB
testcase_27 AC 125 ms
54,016 KB
testcase_28 AC 126 ms
53,784 KB
testcase_29 AC 127 ms
54,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		scan.close();
		for(int i = 0; i < S.length(); i++) {
			char c = S.charAt(i);
			if(c == 'I' || c == 'l') {
				System.out.print(1);
			}else if(c == 'O' || c == 'o') {
				System.out.print(0);
			}else {
				System.out.print(c);
			}
		}
		System.out.println();
	}
}
0