結果

問題 No.548 国士無双
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 23:29:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 963 bytes
コンパイル時間 1,855 ms
コンパイル使用メモリ 77,468 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-09-17 14:45:04
合計ジャッジ時間 5,465 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
52,552 KB
testcase_01 AC 118 ms
54,176 KB
testcase_02 AC 123 ms
54,188 KB
testcase_03 AC 124 ms
54,212 KB
testcase_04 AC 123 ms
53,872 KB
testcase_05 AC 111 ms
52,524 KB
testcase_06 AC 113 ms
54,192 KB
testcase_07 AC 100 ms
52,692 KB
testcase_08 AC 115 ms
54,244 KB
testcase_09 AC 110 ms
53,688 KB
testcase_10 AC 108 ms
54,208 KB
testcase_11 AC 96 ms
52,868 KB
testcase_12 AC 114 ms
54,200 KB
testcase_13 AC 113 ms
54,004 KB
testcase_14 AC 110 ms
53,708 KB
testcase_15 AC 116 ms
53,812 KB
testcase_16 AC 103 ms
52,792 KB
testcase_17 AC 113 ms
53,876 KB
testcase_18 AC 111 ms
53,864 KB
testcase_19 AC 107 ms
53,840 KB
testcase_20 AC 117 ms
54,020 KB
testcase_21 AC 115 ms
54,044 KB
testcase_22 AC 116 ms
53,752 KB
testcase_23 AC 111 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int[] ar = new int[13];
		String s = sc.next();
		for (int i=0; i<13; i++) {
			char c = s.charAt(i);
			if (c>=97 && c<=109) {ar[c-97]++;}
		}
		
		//可能なパターン
		//・0が1個、1が11個、2が1個のとき(0の文字を出力)
		//・1が13個(全種辞書順に出力)
		//それ以外の場合
		//・3が1個混じっているなど(Impossibleを出力)
		
		int zero = 0;
		int zero_num = 0;
		int one = 0;
		int two = 0;
		
		for (int i=0; i<13; i++) {
			if (ar[i]==0) {
				zero++;
				zero_num = i;
			}
			else if (ar[i]==1) {one++;}
			else if (ar[i]==2) {two++;}
		}
		
		if (zero==1 && one==11 && two==1) {System.out.println((char)(zero_num+97));}
		else if (one==13) {
			for (int i=0; i<13; i++) {
				System.out.println((char)(i+97));
			}
		}
		else {System.out.println("Impossible");}
	}
}
0