結果

問題 No.548 国士無双
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-29 19:57:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 949 bytes
コンパイル時間 3,495 ms
コンパイル使用メモリ 75,756 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-09-17 13:48:46
合計ジャッジ時間 7,362 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,176 KB
testcase_01 AC 125 ms
41,044 KB
testcase_02 AC 123 ms
41,460 KB
testcase_03 AC 124 ms
41,360 KB
testcase_04 AC 125 ms
41,232 KB
testcase_05 AC 125 ms
41,064 KB
testcase_06 AC 125 ms
40,912 KB
testcase_07 AC 111 ms
40,100 KB
testcase_08 AC 126 ms
41,044 KB
testcase_09 AC 126 ms
41,180 KB
testcase_10 AC 123 ms
41,412 KB
testcase_11 AC 124 ms
41,360 KB
testcase_12 AC 125 ms
41,216 KB
testcase_13 AC 123 ms
41,056 KB
testcase_14 AC 123 ms
40,968 KB
testcase_15 AC 126 ms
41,116 KB
testcase_16 AC 122 ms
40,988 KB
testcase_17 AC 123 ms
41,008 KB
testcase_18 AC 123 ms
41,084 KB
testcase_19 AC 124 ms
41,060 KB
testcase_20 AC 123 ms
41,244 KB
testcase_21 AC 122 ms
41,252 KB
testcase_22 AC 125 ms
41,212 KB
testcase_23 AC 110 ms
40,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Arrays;
import java.util.Scanner;

public class No548 {
    public static void main(String[] args) {
        String s = new Scanner(System.in).next();
        char[] schar = s.toCharArray();
        char[] charCnt = new char[13];
        int zeroCnt = 0;
        char onlyOne = 0;

        Arrays.sort(schar);
        for(int i = 0; i < 13; i++) {
            if(schar[i] - 97 < 13) {
                charCnt[schar[i] - 97] += 1;
            }
        }

        for(int i = 0; i < 13; i++) {
            if(charCnt[i] == 0) {
                zeroCnt++;
                onlyOne = (char)(i + 97);
            }
        }

        if(zeroCnt == 0) {
            for(int i = 0; i < 13; i++) {
                System.out.println((char)(97 + i));
            }
        } else if(zeroCnt == 1) {
            System.out.println(onlyOne);
        } else {
            System.out.println("Impossible");
        }
    }
}
0