結果

問題 No.587 七対子
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 23:02:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 2,441 ms
コンパイル使用メモリ 74,700 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-07-19 19:50:50
合計ジャッジ時間 7,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,000 KB
testcase_01 AC 111 ms
40,200 KB
testcase_02 AC 119 ms
41,184 KB
testcase_03 AC 116 ms
40,984 KB
testcase_04 AC 121 ms
40,992 KB
testcase_05 AC 119 ms
41,056 KB
testcase_06 AC 114 ms
40,992 KB
testcase_07 AC 104 ms
40,316 KB
testcase_08 AC 110 ms
40,744 KB
testcase_09 AC 112 ms
40,912 KB
testcase_10 AC 101 ms
40,104 KB
testcase_11 AC 114 ms
40,868 KB
testcase_12 AC 113 ms
40,988 KB
testcase_13 AC 113 ms
41,124 KB
testcase_14 AC 113 ms
40,960 KB
testcase_15 AC 112 ms
41,056 KB
testcase_16 AC 114 ms
41,172 KB
testcase_17 AC 114 ms
41,080 KB
testcase_18 AC 109 ms
40,900 KB
testcase_19 AC 115 ms
40,880 KB
testcase_20 AC 116 ms
40,876 KB
testcase_21 AC 117 ms
40,700 KB
testcase_22 AC 113 ms
41,232 KB
testcase_23 AC 110 ms
40,996 KB
testcase_24 AC 118 ms
41,244 KB
testcase_25 AC 122 ms
40,928 KB
testcase_26 AC 117 ms
40,956 KB
testcase_27 AC 114 ms
41,148 KB
testcase_28 AC 109 ms
40,744 KB
testcase_29 AC 101 ms
40,124 KB
testcase_30 AC 108 ms
40,476 KB
testcase_31 AC 124 ms
41,660 KB
testcase_32 AC 126 ms
41,052 KB
testcase_33 AC 132 ms
41,372 KB
testcase_34 AC 125 ms
41,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int[] alphabet = new int[26];
		String s = sc.next();
		for (int i=0; i<s.length(); i++) {
			char c = s.charAt(i);
			alphabet[c-97]++;
		}
		
		//ループで配列alphabetの要素を調べる。
		//2が6個、1が1個の場合、成り立つので、1が入ってる番号をアルファベットにして出力。
		//それ以外のパターンの場合、impossibleを出力。
		
		int two = 0;
		int one = 0;
		int one_num = 0;
		
		for (int i=0; i<alphabet.length; i++) {
			if (alphabet[i]==2) {two++;}
			else if (alphabet[i]==1) {one++; one_num = i;}
		}
		
		if (two==6 && one==1) {System.out.println((char)(one_num+97));}
		else {System.out.println("Impossible");}
	}
}
0