結果

問題 No.587 七対子
ユーザー 37zigen37zigen
提出日時 2020-02-18 18:03:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 2,464 ms
コンパイル使用メモリ 75,096 KB
実行使用メモリ 41,356 KB
最終ジャッジ日時 2024-07-19 20:04:35
合計ジャッジ時間 7,335 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,068 KB
testcase_01 AC 114 ms
40,884 KB
testcase_02 AC 102 ms
39,868 KB
testcase_03 AC 111 ms
41,120 KB
testcase_04 AC 99 ms
39,980 KB
testcase_05 AC 115 ms
40,984 KB
testcase_06 AC 115 ms
40,824 KB
testcase_07 AC 100 ms
40,040 KB
testcase_08 AC 107 ms
41,080 KB
testcase_09 AC 105 ms
40,672 KB
testcase_10 AC 107 ms
40,996 KB
testcase_11 AC 95 ms
39,984 KB
testcase_12 AC 103 ms
41,064 KB
testcase_13 AC 105 ms
40,900 KB
testcase_14 AC 95 ms
39,964 KB
testcase_15 AC 97 ms
39,916 KB
testcase_16 AC 95 ms
40,112 KB
testcase_17 AC 107 ms
40,964 KB
testcase_18 AC 106 ms
40,680 KB
testcase_19 AC 112 ms
40,860 KB
testcase_20 AC 109 ms
40,924 KB
testcase_21 AC 108 ms
41,160 KB
testcase_22 AC 105 ms
40,932 KB
testcase_23 AC 110 ms
41,152 KB
testcase_24 AC 109 ms
40,896 KB
testcase_25 AC 120 ms
41,356 KB
testcase_26 AC 119 ms
40,952 KB
testcase_27 AC 117 ms
40,824 KB
testcase_28 AC 115 ms
40,996 KB
testcase_29 AC 108 ms
40,896 KB
testcase_30 AC 107 ms
40,752 KB
testcase_31 AC 107 ms
40,732 KB
testcase_32 AC 99 ms
39,680 KB
testcase_33 AC 112 ms
40,968 KB
testcase_34 AC 110 ms
40,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		char[] cs=sc.next().toCharArray();
		int[] cnt=new int[26];
		for(int i=0;i<cs.length;++i) {
			cnt[(int)(cs[i]-'a')]++;
		}
		int c2=0,c1=0,idx=-1;
		for(int i=0;i<cnt.length;++i) {
			if(cnt[i]==2)++c2;
			else if(cnt[i]==1) {
				++c1;
				idx=i;
			}
		}
		if(c2==6&&c1==1) {
			System.out.println((char)('a'+idx));
		}else {
			System.out.println("Impossible");
		}
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
}
0