結果
| 問題 |
No.587 七対子
|
| コンテスト | |
| ユーザー |
fV9TwBhUoa9S3eV
|
| 提出日時 | 2019-10-18 15:07:48 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 32 ms / 2,000 ms |
| コード長 | 240 bytes |
| コンパイル時間 | 123 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-07-19 20:01:04 |
| 合計ジャッジ時間 | 2,297 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 35 |
ソースコード
# No.587 七対子
s = input()
pool = []
nums = []
for w in s:
if w not in pool:
pool.append(w)
nums.append(s.count(w))
if len(pool) == 7 and max(nums) == 2:
print(pool[nums.index(1)])
else:
print('Impossible')
fV9TwBhUoa9S3eV