結果
問題 | No.2126 MEX Game |
ユーザー |
|
提出日時 | 2022-11-18 22:19:07 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 273 bytes |
コンパイル時間 | 101 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 25,328 KB |
最終ジャッジ日時 | 2024-09-20 02:42:13 |
合計ジャッジ時間 | 2,317 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 WA * 6 |
ソースコード
from collections import Countern = int(input())A = list(map(int, input().split()))counter = Counter(A)for i in range(n):if counter[i] >= 2:continueif counter[i] == 1 and counter[i + 1] > 0:print(i + 1)breakprint(i)break