結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-05 10:03:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 311 ms / 1,000 ms
コード長 553 bytes
コンパイル時間 2,991 ms
コンパイル使用メモリ 76,788 KB
実行使用メモリ 60,920 KB
最終ジャッジ日時 2024-10-06 05:20:13
合計ジャッジ時間 13,065 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
54,748 KB
testcase_01 AC 137 ms
54,808 KB
testcase_02 AC 145 ms
54,832 KB
testcase_03 AC 140 ms
54,460 KB
testcase_04 AC 140 ms
55,116 KB
testcase_05 AC 125 ms
54,664 KB
testcase_06 AC 126 ms
54,692 KB
testcase_07 AC 134 ms
53,512 KB
testcase_08 AC 142 ms
54,176 KB
testcase_09 AC 139 ms
54,900 KB
testcase_10 AC 145 ms
54,400 KB
testcase_11 AC 125 ms
54,664 KB
testcase_12 AC 127 ms
54,544 KB
testcase_13 AC 276 ms
60,044 KB
testcase_14 AC 274 ms
59,600 KB
testcase_15 AC 200 ms
56,852 KB
testcase_16 AC 255 ms
58,044 KB
testcase_17 AC 300 ms
60,528 KB
testcase_18 AC 260 ms
57,812 KB
testcase_19 AC 287 ms
60,920 KB
testcase_20 AC 279 ms
58,800 KB
testcase_21 AC 244 ms
57,352 KB
testcase_22 AC 293 ms
60,836 KB
testcase_23 AC 279 ms
57,948 KB
testcase_24 AC 275 ms
58,216 KB
testcase_25 AC 278 ms
57,888 KB
testcase_26 AC 311 ms
58,772 KB
testcase_27 AC 279 ms
58,760 KB
testcase_28 AC 288 ms
58,232 KB
testcase_29 AC 302 ms
59,232 KB
testcase_30 AC 257 ms
58,068 KB
testcase_31 AC 273 ms
57,808 KB
testcase_32 AC 301 ms
58,220 KB
testcase_33 AC 271 ms
57,920 KB
testcase_34 AC 289 ms
59,064 KB
testcase_35 AC 144 ms
54,184 KB
testcase_36 AC 144 ms
54,544 KB
testcase_37 AC 128 ms
54,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	char[] char_Array = sc.nextLine().toCharArray();
	    	sc.close();
	    	char target = '0';
	    	if (char_Array[0] == char_Array[1]) {
	    		target = char_Array[0];}
	    	else {target = char_Array[2];}

	    	for (int i = 0 ; i < char_Array.length; i++) {
	    		if (char_Array[i] != target) {
	    			System.out.println(i + 1 + " " +char_Array[i]);
	    		}
	    	}

	    	}

	    }
0