結果

問題 No.548 国士無双
ユーザー samplelpmassamplelpmas
提出日時 2017-07-31 03:51:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 1,102 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 77,100 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-09-17 13:41:47
合計ジャッジ時間 6,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,016 KB
testcase_01 AC 125 ms
54,060 KB
testcase_02 AC 128 ms
53,968 KB
testcase_03 AC 128 ms
54,256 KB
testcase_04 AC 126 ms
53,792 KB
testcase_05 AC 126 ms
53,804 KB
testcase_06 AC 128 ms
54,144 KB
testcase_07 AC 130 ms
54,268 KB
testcase_08 AC 129 ms
54,104 KB
testcase_09 AC 128 ms
54,300 KB
testcase_10 AC 128 ms
53,780 KB
testcase_11 AC 127 ms
54,156 KB
testcase_12 AC 126 ms
54,124 KB
testcase_13 AC 126 ms
53,992 KB
testcase_14 AC 127 ms
54,208 KB
testcase_15 AC 127 ms
54,104 KB
testcase_16 AC 126 ms
53,860 KB
testcase_17 AC 128 ms
53,996 KB
testcase_18 AC 127 ms
53,972 KB
testcase_19 AC 126 ms
54,068 KB
testcase_20 AC 126 ms
53,904 KB
testcase_21 AC 110 ms
52,916 KB
testcase_22 AC 125 ms
53,800 KB
testcase_23 AC 130 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        char[] S = sc.next().toCharArray();

        int[] alphabetCount = new int[13];

        for (int i = 0; i < S.length; i++) {

            if (S[i] - 'a' >= 13) {
                System.out.println("Impossible");
                return;
            }

            alphabetCount[S[i] - 'a']++;

        }

        int zeroCount = 0;

        for (int i = 0; i < S.length; i++) {

            if (alphabetCount[i] == 0) {
                zeroCount++;
            }

        }

        if (zeroCount == 0) {

            for (int i = 0; i < S.length; i++) {
                System.out.println((char) (i + 'a'));
            }

        } else if (zeroCount == 1) {

            for (int i = 0; i < S.length; i++) {

                if (alphabetCount[i] == 0) {
                    System.out.println((char) (i + 'a'));
                }

            }

        } else if (zeroCount >= 2) {

            System.out.println("Impossible");

        }

    }

}
0