結果

問題 No.548 国士無双
ユーザー 37zigen37zigen
提出日時 2020-02-18 20:18:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 2,194 ms
コンパイル使用メモリ 78,128 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-10-06 15:44:19
合計ジャッジ時間 5,764 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
41,492 KB
testcase_01 AC 96 ms
41,392 KB
testcase_02 AC 99 ms
41,244 KB
testcase_03 AC 108 ms
41,312 KB
testcase_04 AC 108 ms
41,344 KB
testcase_05 AC 108 ms
41,108 KB
testcase_06 AC 104 ms
41,328 KB
testcase_07 AC 110 ms
41,328 KB
testcase_08 AC 110 ms
40,260 KB
testcase_09 AC 110 ms
40,156 KB
testcase_10 AC 106 ms
41,076 KB
testcase_11 AC 110 ms
41,200 KB
testcase_12 AC 108 ms
41,100 KB
testcase_13 AC 97 ms
40,892 KB
testcase_14 AC 99 ms
41,080 KB
testcase_15 AC 113 ms
41,284 KB
testcase_16 AC 108 ms
41,020 KB
testcase_17 AC 108 ms
41,288 KB
testcase_18 AC 100 ms
40,976 KB
testcase_19 AC 116 ms
41,336 KB
testcase_20 AC 113 ms
40,988 KB
testcase_21 AC 114 ms
41,192 KB
testcase_22 AC 117 ms
40,956 KB
testcase_23 AC 117 ms
41,240 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();
		boolean find=false;
		for(int i=0;i<26;++i) {
			int[] cnt=new int[26];
			for(int j=0;j<cs.length;++j)cnt[(int)(cs[j]-'a')]++;
			cnt[i]++;
			boolean flag=true;
			for(int j=0;j<13;++j) {
				flag&=cnt[j]>=1&&2>=cnt[j];
			}
			int c2=0;
			for(int j=0;j<13;++j)if(cnt[j]==2)++c2;
			flag&=c2==1;
			if(flag) {
				System.out.println((char)('a'+i));
				find=true;
			}
		}
		if(!find)System.out.println("Impossible");
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
}
0