結果

問題 No.587 七対子
ユーザー tetsutetsu
提出日時 2017-11-03 22:31:31
言語 Java19
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 2,643 bytes
コンパイル時間 4,120 ms
コンパイル使用メモリ 80,960 KB
実行使用メモリ 56,180 KB
最終ジャッジ日時 2023-09-27 02:10:24
合計ジャッジ時間 10,217 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
55,776 KB
testcase_01 AC 122 ms
55,752 KB
testcase_02 AC 123 ms
55,704 KB
testcase_03 AC 123 ms
55,776 KB
testcase_04 AC 120 ms
53,860 KB
testcase_05 AC 120 ms
55,840 KB
testcase_06 AC 120 ms
56,004 KB
testcase_07 AC 119 ms
55,724 KB
testcase_08 AC 119 ms
55,916 KB
testcase_09 AC 124 ms
55,936 KB
testcase_10 AC 123 ms
55,652 KB
testcase_11 AC 119 ms
55,640 KB
testcase_12 AC 119 ms
56,076 KB
testcase_13 AC 120 ms
55,408 KB
testcase_14 AC 121 ms
55,768 KB
testcase_15 AC 121 ms
55,752 KB
testcase_16 AC 122 ms
55,928 KB
testcase_17 AC 121 ms
53,932 KB
testcase_18 AC 122 ms
55,652 KB
testcase_19 AC 122 ms
55,796 KB
testcase_20 AC 122 ms
55,916 KB
testcase_21 AC 120 ms
55,644 KB
testcase_22 AC 122 ms
55,592 KB
testcase_23 AC 122 ms
55,660 KB
testcase_24 AC 119 ms
55,716 KB
testcase_25 AC 120 ms
53,616 KB
testcase_26 AC 119 ms
56,180 KB
testcase_27 AC 121 ms
55,768 KB
testcase_28 AC 121 ms
55,656 KB
testcase_29 AC 126 ms
55,668 KB
testcase_30 AC 122 ms
55,928 KB
testcase_31 AC 121 ms
55,560 KB
testcase_32 AC 123 ms
56,020 KB
testcase_33 AC 122 ms
55,808 KB
testcase_34 AC 122 ms
55,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class P587 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		HashMap<Character, Integer> m = new HashMap<>();
		String s = sc.nextLine();
		for(int i=0; i<s.length(); i++) {
			char c = s.charAt(i);
			if(m.containsKey(c)) {
				m.put(c, m.get(c)+1);
			} else {
				m.put(c, 1);
			}
		}
		if(m.keySet().size()==7) {
			int two = 0;
			int one = 0;
			char ans =' ';
			for(Map.Entry<Character, Integer> e : m.entrySet()) {
				if(e.getValue() == 2) two++;
				if(e.getValue() == 1) {
					one++; ans = e.getKey();
				}
			}
			if(two==6&&one==1) {
				System.out.println(ans);
			} else {
				System.out.println("Impossible");
			}
		} else {
			System.out.println("Impossible");
		}
	}
	
	// print
	static void print(String s) {
		System.out.println(s);
	}
	
	// union find lib
	// usage:
	// 最初にinitを呼ぶ
	// root: 直接は呼ばないで
	// unite: まとめる
	// same: グループ判定
	static void init(int par[], int N) {
		for(int i=0; i<N; i++) {
			par[i] = i;
		}
	}
	
	static int root(int x, int [] par) {
		if(par[x] == x) {
			return x;
		} else {
			return (par[x] = root(par[x], par));
		}
	}
	
	static boolean same(int x, int y, int[] par) {
		return root(x, par) == root(y, par);
	}
	
	static void unite(int x, int y, int[] par) {
		x = root(x, par);
		y = root(y, par);
		if(x == y) return;
		par[x] = y;
	}
	
	// end union find lib
	
	// number lib
	
	static int max(int...ls) {
		int ans = Integer.MIN_VALUE;
		for(int i=0; i<ls.length; i++) {
			ans = Math.max(ans, ls[i]);
		}
		return ans;
	}
	
	static int min(int...ls) {
		int ans = Integer.MAX_VALUE;
		for(int i=0; i<ls.length; i++) {
			ans = Math.min(ans, ls[i]);
		}
		return ans;
	}
	
	static long lcm(long a, long b) {
		return a*(b/gcd(a, b));
	}
	
	static long gcd(long a, long b) {
		long ta = Math.max(a, b);
		long tb = Math.min(a, b);
		long tmp;
		while((tmp = ta%tb) != 0) {
			ta = tb;
			tb = tmp;
		}
		return tb;
	}
	
	static long modcomb(long n, long k, long mod) {
		if(k==1) {
			return n;
		}
		
		long ans = 1;
		for(long i=n; i>=n-k+1; i--) {
			ans = (ans * i)%mod;
		}
		for(long i=k; 0<i; i--) {
			ans = (ans * modpow(i, mod-2, mod)) % mod;
		}
		return ans;
	}
	
	static long modpow(long a, long b, long mod) {
		if(b==0) return 1;
		if(b%2==0) {
			long d = modpow(a, b/2, mod);
			return (d*d)%mod;
		} else {
			return (a*modpow(a, b-1, mod))%mod;
		}
	}
	
	static int disit(long a, long d) {
		int count = 0;
		while(a!=0) {
			a = a/d;
			count++;
		}
		return count;
	}
	
	// end number lib
}
0