結果

問題 No.548 国士無双
ユーザー tentententen
提出日時 2020-11-04 11:46:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 83,948 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-07-22 09:55:00
合計ジャッジ時間 6,867 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,152 KB
testcase_01 AC 131 ms
41,356 KB
testcase_02 AC 131 ms
41,392 KB
testcase_03 AC 126 ms
41,356 KB
testcase_04 AC 131 ms
41,220 KB
testcase_05 AC 126 ms
41,364 KB
testcase_06 AC 130 ms
41,164 KB
testcase_07 AC 130 ms
41,468 KB
testcase_08 AC 130 ms
41,128 KB
testcase_09 AC 126 ms
41,516 KB
testcase_10 AC 129 ms
41,428 KB
testcase_11 AC 128 ms
40,936 KB
testcase_12 AC 126 ms
41,300 KB
testcase_13 AC 127 ms
41,112 KB
testcase_14 AC 128 ms
41,172 KB
testcase_15 AC 131 ms
41,172 KB
testcase_16 AC 128 ms
41,016 KB
testcase_17 AC 127 ms
41,156 KB
testcase_18 AC 129 ms
41,252 KB
testcase_19 AC 129 ms
41,088 KB
testcase_20 AC 127 ms
41,380 KB
testcase_21 AC 128 ms
41,344 KB
testcase_22 AC 125 ms
41,232 KB
testcase_23 AC 133 ms
41,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		int[] counts = new int[13];
		for (char c : arr) {
		    counts[c - 'a']++;
		}
		char x = '0';
		for (int i = 0; i < counts.length; i++) {
		    if (counts[i] == 1 || counts[i] == 2) {
		        continue;
		    } else {
		        if (counts[i] == 0 && x == '0') {
		            x = (char)(i + 'a');
		        } else {
		            System.out.println("Impossible");
		            return;
		        }
		    }
		}
		if (x == '0') {
		    Arrays.sort(arr);
		    for (char c : arr) {
		        System.out.println(c);
		    }
		} else {
		    System.out.println(x);
		}
	}
}
0