結果

問題 No.587 七対子
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-21 23:25:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 960 bytes
コンパイル時間 2,561 ms
コンパイル使用メモリ 77,484 KB
実行使用メモリ 41,244 KB
最終ジャッジ日時 2024-07-19 19:58:28
合計ジャッジ時間 7,174 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
39,844 KB
testcase_01 AC 107 ms
41,160 KB
testcase_02 AC 108 ms
40,940 KB
testcase_03 AC 108 ms
41,008 KB
testcase_04 AC 97 ms
39,916 KB
testcase_05 AC 108 ms
40,136 KB
testcase_06 AC 110 ms
41,124 KB
testcase_07 AC 98 ms
39,964 KB
testcase_08 AC 100 ms
40,392 KB
testcase_09 AC 103 ms
40,112 KB
testcase_10 AC 117 ms
41,244 KB
testcase_11 AC 94 ms
40,024 KB
testcase_12 AC 92 ms
39,680 KB
testcase_13 AC 96 ms
40,036 KB
testcase_14 AC 99 ms
40,360 KB
testcase_15 AC 96 ms
39,980 KB
testcase_16 AC 107 ms
40,156 KB
testcase_17 AC 105 ms
40,732 KB
testcase_18 AC 113 ms
40,900 KB
testcase_19 AC 107 ms
40,944 KB
testcase_20 AC 105 ms
40,156 KB
testcase_21 AC 104 ms
40,856 KB
testcase_22 AC 89 ms
39,464 KB
testcase_23 AC 108 ms
41,116 KB
testcase_24 AC 119 ms
41,000 KB
testcase_25 AC 89 ms
39,680 KB
testcase_26 AC 103 ms
40,788 KB
testcase_27 AC 108 ms
40,708 KB
testcase_28 AC 110 ms
40,904 KB
testcase_29 AC 108 ms
40,888 KB
testcase_30 AC 98 ms
39,936 KB
testcase_31 AC 107 ms
40,940 KB
testcase_32 AC 107 ms
40,920 KB
testcase_33 AC 109 ms
40,980 KB
testcase_34 AC 107 ms
40,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static final int IMPOSSIBLE = -1;

	static public void main(String[]args) throws Exception {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		solve(s);
	}

	static void solve(String s) throws Exception {
		int [] alphabet = new int[26];
		for(int i=0; i<s.length(); i++) {
			int tmp = s.charAt(i) - 'a';
			alphabet[tmp]++;
		}

		int ans = searchAns(alphabet);
		if(ans == IMPOSSIBLE) {
			System.out.println("Impossible");
		} else {
			System.out.println( (char)('a' + ans) );
		}
	}

	static int searchAns(int [] alphabet) throws Exception {
		final int NUM_ALPHABET = 26;
		int answer = IMPOSSIBLE;
		for(int i=0; i < NUM_ALPHABET; i++) {
			if(alphabet[i] == 0 || alphabet[i] == 2) {
				//nothing
			} else if(alphabet[i] == 1) {
				if(answer  == IMPOSSIBLE) {
					answer = i;
				} else {
					return IMPOSSIBLE;
				}
			} else {
				return IMPOSSIBLE;
			}
		}
		return answer;
	}
}
0