結果
| 問題 | No.548 国士無双 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-11-10 14:58:15 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 606 bytes |
| コンパイル時間 | 99 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-07-05 20:31:23 |
| 合計ジャッジ時間 | 1,695 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 WA * 3 |
ソースコード
import sys
sample = "abcdefghijklm"
def main():
S = input()
if is_include_invalid_char(S):
print("Impossible")
sys.exit()
if len(set(S)) == 13:
for s in list(sample):
print(s)
elif len(set(S)) == 12:
for x, y in zip(list(sample), sorted(list(set(S)))):
if not x == y:
print(x)
sys.exit()
else:
print("Impossible")
def is_include_invalid_char(values):
for s in list(values):
if not s in sample:
return True
return False
if __name__ == '__main__':
main()