結果

問題 No.548 国士無双
ユーザー nohakai3
提出日時 2022-08-01 15:16:15
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-22 04:34:23
合計ジャッジ時間 1,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

s=list(input())
c=collections.Counter(s)
a="abcdefghijklm"
if len(s)!=13:
    exit(print("Impossible"))

if len(c)==13:
    for x in list(a):
        print(x)
    exit()

elif len(c)==12:
    for x in a:
        if not x in c:
            print(x)
            exit()
else:
    print("Impossible")
0