結果
問題 |
No.587 七対子
|
ユーザー |
![]() |
提出日時 | 2021-03-08 02:07:15 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 240 bytes |
コンパイル時間 | 395 ms |
コンパイル使用メモリ | 82,300 KB |
実行使用メモリ | 55,468 KB |
最終ジャッジ日時 | 2024-10-09 12:22:03 |
合計ジャッジ時間 | 3,027 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 32 WA * 3 |
ソースコード
from collections import Counter d = Counter(input()) if len(d) == 7: c = 0 for k,v in d.items(): if v == 0: break elif v==1: c = k else: print(c) exit() print("Impossible")