結果
| 問題 |
No.548 国士無双
|
| コンテスト | |
| ユーザー |
compass19
|
| 提出日時 | 2017-09-29 00:40:54 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 135 bytes |
| コンパイル時間 | 173 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2024-07-05 20:31:09 |
| 合計ジャッジ時間 | 1,758 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 WA * 1 |
ソースコード
i=set(input())
s=set('abcdefghijklm')
if len(i&s)==13:print('\n'.join(s))
elif len(i&s)==12:print((s-i).pop())
else:print('Impossible')
compass19