結果
問題 |
No.548 国士無双
|
ユーザー |
![]() |
提出日時 | 2022-08-01 15:14:18 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 305 bytes |
コンパイル時間 | 76 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-22 04:30:37 |
合計ジャッジ時間 | 1,741 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 3 WA * 21 |
ソースコード
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) elif len(c)==12: for x in a: if not x in c: print(c) exit() else: print("Impossible")