結果

問題 No.548 国士無双
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-06-04 23:29:31
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 736 bytes
コンパイル時間 2,598 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 56,220 KB
最終ジャッジ日時 2024-09-17 14:51:17
合計ジャッジ時間 5,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
53,896 KB
testcase_01 AC 102 ms
54,156 KB
testcase_02 AC 105 ms
54,132 KB
testcase_03 AC 89 ms
52,328 KB
testcase_04 AC 102 ms
54,136 KB
testcase_05 AC 99 ms
54,024 KB
testcase_06 AC 101 ms
53,836 KB
testcase_07 AC 111 ms
53,856 KB
testcase_08 AC 88 ms
52,744 KB
testcase_09 AC 101 ms
53,784 KB
testcase_10 AC 103 ms
54,120 KB
testcase_11 AC 103 ms
54,208 KB
testcase_12 AC 108 ms
54,208 KB
testcase_13 AC 93 ms
53,100 KB
testcase_14 AC 90 ms
53,008 KB
testcase_15 AC 99 ms
54,016 KB
testcase_16 AC 100 ms
53,904 KB
testcase_17 AC 89 ms
52,820 KB
testcase_18 AC 100 ms
53,952 KB
testcase_19 AC 103 ms
54,376 KB
testcase_20 WA -
testcase_21 AC 108 ms
53,984 KB
testcase_22 AC 101 ms
54,088 KB
testcase_23 AC 101 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String s = in.next();

        int[] alph = new int[26];
        for(int i=0; i<s.length(); i++)
            alph[(s.charAt(i) - 'a')]++;

        int temp = 0;
        for(int i=0; i<13; i++) {
            if(alph[i] == 0) temp++;
        }

        if(temp > 2) {
            System.out.println("Impossible");
        } else if(temp == 1) {
            for(int i=0; i<13; i++) {
                if(alph[i] == 0)
                    System.out.println((char)(i+'a'));
            }
        } else {
            for(int i=0; i<13; i++)
                System.out.println((char)(i+'a'));
        }
    }
}
0