結果
問題 | No.2126 MEX Game |
ユーザー | sepa38 |
提出日時 | 2023-03-17 10:20:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 160 bytes |
コンパイル時間 | 353 ms |
コンパイル使用メモリ | 81,892 KB |
実行使用メモリ | 97,984 KB |
最終ジャッジ日時 | 2024-09-18 09:52:38 |
合計ジャッジ時間 | 3,446 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 WA * 12 |
ソースコード
from collections import Countern = int(input())a = list(map(int, input().split()))c = Counter(a)for i in range(1<<20):if c[i] < 2:print(i)break