結果

問題 No.587 七対子
ユーザー fukuseifukusei
提出日時 2018-05-05 17:59:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 3,120 ms
コンパイル使用メモリ 81,276 KB
実行使用メモリ 42,556 KB
最終ジャッジ日時 2024-07-19 19:53:30
合計ジャッジ時間 9,055 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
42,052 KB
testcase_01 AC 137 ms
42,168 KB
testcase_02 AC 138 ms
42,084 KB
testcase_03 AC 151 ms
42,240 KB
testcase_04 AC 135 ms
42,036 KB
testcase_05 AC 141 ms
42,364 KB
testcase_06 AC 147 ms
42,364 KB
testcase_07 AC 138 ms
42,128 KB
testcase_08 AC 125 ms
41,808 KB
testcase_09 AC 148 ms
42,348 KB
testcase_10 AC 141 ms
42,136 KB
testcase_11 AC 140 ms
42,252 KB
testcase_12 AC 144 ms
42,428 KB
testcase_13 AC 130 ms
41,976 KB
testcase_14 AC 144 ms
42,420 KB
testcase_15 AC 136 ms
42,172 KB
testcase_16 AC 140 ms
42,372 KB
testcase_17 AC 143 ms
42,320 KB
testcase_18 AC 146 ms
42,348 KB
testcase_19 AC 158 ms
42,384 KB
testcase_20 AC 158 ms
42,472 KB
testcase_21 AC 145 ms
42,472 KB
testcase_22 AC 144 ms
42,252 KB
testcase_23 AC 137 ms
41,836 KB
testcase_24 AC 145 ms
42,412 KB
testcase_25 AC 145 ms
42,380 KB
testcase_26 AC 142 ms
42,356 KB
testcase_27 AC 144 ms
42,556 KB
testcase_28 AC 153 ms
42,160 KB
testcase_29 AC 143 ms
42,544 KB
testcase_30 AC 127 ms
41,784 KB
testcase_31 AC 140 ms
42,156 KB
testcase_32 AC 145 ms
42,380 KB
testcase_33 AC 136 ms
42,304 KB
testcase_34 AC 125 ms
41,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class paiza {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String str = sc.nextLine();
		int count = 0;
		String match = "";
		char ch;
		
		for (int i = 0; i < str.length(); i++) {
			ch = str.charAt(i);
			if ( str.indexOf(ch,i+1) != -1) {
				if ( match.indexOf(ch) == -1 ){
					count++;
					match = match + ch;
				}
			}
		}
		
		if (count == 6) {
			for(int i=0; i<str.length(); i++) {
				if(match.indexOf(str.charAt(i)) == -1){
					System.out.println(str.charAt(i));
					return;
				}
			}
			System.out.println("Impossible");
		}
		else {
			System.out.println("Impossible");
		}
	}
}
0