結果

問題 No.587 七対子
ユーザー GrenacheGrenache
提出日時 2017-11-03 22:28:29
言語 Java
(openjdk 23)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 3,926 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-07-19 19:40:28
合計ジャッジ時間 9,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder587 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		char[] s = sc.next().toCharArray();

		int[] cnt = new int[26];
		for (char c : s) {
			cnt[c - 'a']++;
		}

		int cnt1 = 0;
		int cnt2 = 0;
		char c = 0;
		for (int i = 0; i < 26; i++) {
			if (cnt[i] == 1) {
				cnt1++;
				c = (char)(i + 'a');
			} else if (cnt[i] == 2) {
				cnt2++;
			}
		}

		if (cnt2 == 6 && cnt1 == 1) {
			pr.println(c);
		} else {
			pr.println("Impossible");
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0