結果

問題 No.548 国士無双
ユーザー kohei2019kohei2019
提出日時 2022-02-08 21:18:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 55,312 KB
最終ジャッジ日時 2024-06-23 17:03:13
合計ジャッジ時間 2,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,180 KB
testcase_01 AC 40 ms
53,564 KB
testcase_02 AC 41 ms
54,984 KB
testcase_03 AC 38 ms
54,596 KB
testcase_04 AC 38 ms
54,308 KB
testcase_05 AC 40 ms
54,484 KB
testcase_06 AC 40 ms
54,208 KB
testcase_07 AC 39 ms
53,448 KB
testcase_08 AC 37 ms
54,304 KB
testcase_09 AC 37 ms
53,580 KB
testcase_10 AC 42 ms
55,312 KB
testcase_11 AC 40 ms
54,252 KB
testcase_12 AC 38 ms
53,924 KB
testcase_13 AC 38 ms
54,608 KB
testcase_14 AC 39 ms
53,764 KB
testcase_15 AC 37 ms
54,684 KB
testcase_16 AC 38 ms
54,308 KB
testcase_17 AC 38 ms
55,256 KB
testcase_18 AC 39 ms
53,776 KB
testcase_19 AC 40 ms
54,240 KB
testcase_20 AC 40 ms
54,788 KB
testcase_21 AC 38 ms
53,988 KB
testcase_22 AC 38 ms
54,660 KB
testcase_23 AC 39 ms
53,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
S = list(input())
cnt = collections.Counter(S)
a = 'abcdefghijklm'
if len(S) != 13:
    print('Impossible')
    exit()

if len(cnt) == 13:
    print(*list(a),sep='\n')
elif len(cnt) == 12:
    for c in a:
        if not c in cnt:
            print(c)
            break
else:
    print('Impossible')
0