結果
| 問題 | No.548 国士無双 |
| コンテスト | |
| ユーザー |
liny_tail
|
| 提出日時 | 2020-09-17 09:27:13 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 93 ms / 2,000 ms |
| + 418µs | |
| コード長 | 190 bytes |
| 記録 | |
| コンパイル時間 | 290 ms |
| コンパイル使用メモリ | 21,536 KB |
| 実行使用メモリ | 15,884 KB |
| 最終ジャッジ日時 | 2026-07-26 21:31:32 |
| 合計ジャッジ時間 | 4,071 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 |
ソースコード
txt = 'abcdefghijklm'
S = input().strip()
lst = [i for i in txt if i not in S]
if len(lst) > 1:
print('Impossible')
elif len(lst) == 1:
print(lst[0])
else:
for i in txt:
print(i)
liny_tail