結果

問題 No.548 国士無双
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-07-28 22:32:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 4,192 ms
コンパイル使用メモリ 83,128 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-09-17 13:00:09
合計ジャッジ時間 5,498 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,952 KB
testcase_01 AC 114 ms
41,096 KB
testcase_02 AC 117 ms
41,244 KB
testcase_03 AC 114 ms
41,100 KB
testcase_04 AC 111 ms
41,212 KB
testcase_05 AC 117 ms
41,204 KB
testcase_06 AC 116 ms
41,024 KB
testcase_07 AC 122 ms
41,200 KB
testcase_08 AC 123 ms
41,196 KB
testcase_09 AC 120 ms
40,988 KB
testcase_10 AC 104 ms
41,080 KB
testcase_11 AC 109 ms
40,844 KB
testcase_12 AC 114 ms
41,328 KB
testcase_13 AC 103 ms
41,048 KB
testcase_14 AC 114 ms
40,804 KB
testcase_15 AC 113 ms
41,392 KB
testcase_16 AC 110 ms
40,920 KB
testcase_17 AC 115 ms
41,116 KB
testcase_18 AC 114 ms
41,096 KB
testcase_19 AC 119 ms
40,876 KB
testcase_20 AC 116 ms
41,248 KB
testcase_21 AC 117 ms
40,888 KB
testcase_22 AC 117 ms
41,000 KB
testcase_23 AC 118 ms
40,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        int [] alp = new int [26];
        for(int i=0; i<13; i++){
            alp[(S.charAt(i)-'a')]++;
        }
        int z=0;
        for(int i=0; i<13; i++){
            if(alp[i]==0)z++;
        }
        if(z>=2){
            System.out.println("Impossible");
        }else if(z==1){
            for(int i=0; i<13; i++){
                if(alp[i]==0)System.out.println((char)(i+'a'));
            }
        }else{
            for(int i=0; i<13; i++){
                System.out.println((char)(i+'a'));
            }
        }
    }
}
0