結果

問題 No.587 七対子
ユーザー uafr_csuafr_cs
提出日時 2017-11-03 22:25:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 1,943 ms
コンパイル使用メモリ 74,904 KB
実行使用メモリ 41,196 KB
最終ジャッジ日時 2024-07-19 19:39:03
合計ジャッジ時間 6,504 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,764 KB
testcase_01 AC 111 ms
40,860 KB
testcase_02 AC 105 ms
40,648 KB
testcase_03 AC 107 ms
40,808 KB
testcase_04 AC 107 ms
41,116 KB
testcase_05 AC 104 ms
41,100 KB
testcase_06 AC 95 ms
39,820 KB
testcase_07 AC 111 ms
41,032 KB
testcase_08 AC 98 ms
39,836 KB
testcase_09 AC 107 ms
41,196 KB
testcase_10 AC 100 ms
39,904 KB
testcase_11 AC 108 ms
41,176 KB
testcase_12 AC 105 ms
40,636 KB
testcase_13 AC 98 ms
39,836 KB
testcase_14 AC 95 ms
39,956 KB
testcase_15 AC 109 ms
40,848 KB
testcase_16 AC 99 ms
39,944 KB
testcase_17 AC 111 ms
41,156 KB
testcase_18 AC 95 ms
39,912 KB
testcase_19 AC 104 ms
40,844 KB
testcase_20 AC 107 ms
40,976 KB
testcase_21 AC 95 ms
39,884 KB
testcase_22 AC 105 ms
40,212 KB
testcase_23 AC 89 ms
39,176 KB
testcase_24 AC 107 ms
40,936 KB
testcase_25 AC 96 ms
39,816 KB
testcase_26 AC 94 ms
40,084 KB
testcase_27 AC 103 ms
40,924 KB
testcase_28 AC 95 ms
39,976 KB
testcase_29 AC 102 ms
40,392 KB
testcase_30 AC 108 ms
40,960 KB
testcase_31 AC 94 ms
39,824 KB
testcase_32 AC 94 ms
39,836 KB
testcase_33 AC 104 ms
40,924 KB
testcase_34 AC 109 ms
39,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		char[] alpha = new char[26];
		for(final char ch : sc.next().toCharArray()){
			alpha[ch - 'a']++;
		}
		
		int two_count = 0, one_count = 0;
		for(final int a : alpha){
			if(a == 2){ 
				two_count++;
			}else if(a == 1){
				one_count++;
			}
		}
		
		if(two_count == 6 && one_count == 1){
			for(int i = 0; i < 26; i++){
				if(alpha[i] == 1){
					System.out.println((char)(i + 'a'));
					return;
				}
			}
		}else{
			System.out.println("Impossible");
		}
	}
}
0