結果

問題 No.548 国士無双
ユーザー YamaKasaYamaKasa
提出日時 2018-06-05 01:15:13
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,305 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 78,244 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-07-05 20:33:49
合計ジャッジ時間 5,770 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,120 KB
testcase_01 AC 107 ms
39,780 KB
testcase_02 AC 118 ms
40,976 KB
testcase_03 AC 118 ms
41,200 KB
testcase_04 AC 119 ms
41,116 KB
testcase_05 AC 117 ms
40,848 KB
testcase_06 AC 122 ms
41,116 KB
testcase_07 AC 112 ms
40,384 KB
testcase_08 AC 122 ms
41,144 KB
testcase_09 AC 120 ms
41,124 KB
testcase_10 AC 107 ms
39,872 KB
testcase_11 AC 120 ms
41,028 KB
testcase_12 AC 106 ms
39,872 KB
testcase_13 AC 120 ms
41,244 KB
testcase_14 AC 120 ms
40,944 KB
testcase_15 AC 121 ms
41,060 KB
testcase_16 AC 124 ms
41,052 KB
testcase_17 AC 120 ms
40,884 KB
testcase_18 AC 121 ms
41,040 KB
testcase_19 AC 120 ms
41,100 KB
testcase_20 AC 124 ms
41,412 KB
testcase_21 AC 117 ms
41,032 KB
testcase_22 WA -
testcase_23 AC 127 ms
41,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
import java.util.Set;
import java.util.TreeSet;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		scan.close();
		String []w1 = {"a", "b", "c", "d", "e", "f", "g", "h", "i",
				"j", "k", "l", "m"};
		String []w2 = {"n", "o", "p", "q", "r", "s", "t", "u", "v",
				"w", "x", "y", "z"};
		int l1 = w1.length;
		int []cnt1 = new int[l1];
		int []cnt2 = new int[l1];
		Arrays.fill(cnt1, 0);
		Arrays.fill(cnt2, 0);
		for(int i = 0; i < 13; i++) {
			String s = S.substring(i, i + 1);
			for(int j = 0; j < l1; j++) {
				if(s.equals(w1[j])) {
					cnt1[j] ++;
					break;
				}
				if(s.equals(w2[j])) {
					cnt2[j] ++;
					System.out.println("Impossible");
					System.exit(0);
				}
			}
		}
		Set<String> hash_set = new TreeSet<String>();
		int cnt3 = 0;
		for(int i = 0; i < 13; i++) {
			if(cnt1[i] > 1) {
				cnt3 ++;
			}
		}
		if(cnt3 >= 2) {
			System.out.println("Impossible");
			System.exit(0);
		}
		if(cnt3 == 0) {
			for(int i = 0; i < 13; i++) {
				System.out.println(w1[i]);
			}
			System.exit(0);
		}
		for(int i = 0; i < 13; i++) {
			if(cnt1[i] == 0) {
				hash_set.add(w1[i]);
			}
		}
		for(String t : hash_set) {
			System.out.println(t);
		}

	}
}
0