結果
| 問題 |
No.587 七対子
|
| コンテスト | |
| ユーザー |
yk16
|
| 提出日時 | 2017-11-04 02:25:32 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 302 bytes |
| コンパイル時間 | 173 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-11-23 15:50:56 |
| 合計ジャッジ時間 | 2,168 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 27 WA * 8 |
ソースコード
def main():
s = [_ for _ in input()]
for i in list(set(s)):
if s.count(i) == 2:
continue
elif s.count(i) == 1:
ans = i
else:
ans = "Impossible"
break
print(ans)
if __name__ == "__main__":
main()
yk16