結果
| 問題 | No.548 国士無双 |
| コンテスト | |
| ユーザー |
rythem00359
|
| 提出日時 | 2020-09-04 12:06:35 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 261 bytes |
| 記録 | |
| コンパイル時間 | 412 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,388 KB |
| 最終ジャッジ日時 | 2026-05-19 17:29:35 |
| 合計ジャッジ時間 | 4,017 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 WA * 20 |
ソースコード
a=list('abcdefghijklm')
s=sorted(set(input()))
if len(s)==13:
print(*a,sep='\n')
elif len(s)==12:
for i in range(len(s)):
if a[i]!=s[i]:
print(a[i])
break
else:
print('m')
else:
print('Impossible')
rythem00359