結果

問題 No.676 C0nvertPr0b1em
ユーザー yamax3232yamax3232
提出日時 2018-05-03 20:32:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 4,363 ms
コンパイル使用メモリ 77,036 KB
実行使用メモリ 43,312 KB
最終ジャッジ日時 2024-06-23 12:40:56
合計ジャッジ時間 9,195 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,624 KB
testcase_01 AC 148 ms
42,552 KB
testcase_02 AC 162 ms
42,684 KB
testcase_03 AC 180 ms
42,780 KB
testcase_04 AC 166 ms
43,168 KB
testcase_05 AC 167 ms
43,228 KB
testcase_06 AC 160 ms
42,596 KB
testcase_07 AC 166 ms
42,560 KB
testcase_08 AC 166 ms
42,284 KB
testcase_09 AC 151 ms
42,192 KB
testcase_10 AC 187 ms
43,048 KB
testcase_11 AC 150 ms
42,560 KB
testcase_12 AC 154 ms
42,800 KB
testcase_13 AC 169 ms
42,412 KB
testcase_14 AC 164 ms
42,424 KB
testcase_15 AC 155 ms
42,280 KB
testcase_16 AC 186 ms
43,088 KB
testcase_17 AC 167 ms
42,400 KB
testcase_18 AC 157 ms
42,536 KB
testcase_19 AC 158 ms
42,312 KB
testcase_20 AC 162 ms
42,688 KB
testcase_21 AC 170 ms
42,700 KB
testcase_22 AC 173 ms
43,312 KB
testcase_23 AC 151 ms
42,388 KB
testcase_24 AC 133 ms
41,388 KB
testcase_25 AC 133 ms
41,152 KB
testcase_26 AC 130 ms
41,416 KB
testcase_27 AC 133 ms
41,432 KB
testcase_28 AC 159 ms
42,360 KB
testcase_29 AC 155 ms
42,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main23 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		String g=kb.next();
		String r="";
		for(int i=0;i<g.length();i++){
			char c;
			if(g.charAt(i)=='I'||
					g.charAt(i)=='l'){
			r+='1';
			}
			else if(g.charAt(i)=='O'||
					g.charAt(i)=='o'){
			r+='0';
		}else{
			r+=g.charAt(i);
		}
			
	}
		System.out.println(r);
	}
}
0