結果

問題 No.548 国士無双
ユーザー harurun
提出日時 2022-09-27 17:51:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 138 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-22 17:01:20
合計ジャッジ時間 2,001 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

S=set(input())
if len(S)==13:print("""a
b
c
d
e
f
g
h
i
j
k
l
m""")
elif len(S)==12:print(*set("abcdefghijkm")-S)
else:print("Impossible")
0