結果

問題 No.2126 MEX Game
ユーザー lloyz
提出日時 2022-11-18 22:58:37
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 802 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,408 KB
最終ジャッジ日時 2024-09-20 03:26:28
合計ジャッジ時間 3,177 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n = int(input())
A = list(map(int, input().split()))
counter = Counter(A)

add = 0
for i in range(10**5 + 1):
    if counter[i] >= 2:
        if counter[i] >= 3:
            add = 1
        continue
    if counter[i] == 1:
        for j in range(i + 1, 10**5 + 1):
            if counter[j] >= 2:
                if j == i + 1:
                    add = 2
                    continue
                elif j > i + 1 and add == j - i:
                    add += 1
                    continue
            if counter[j] >= 1:
                if add == 0:
                    add = 1
                break
            if j == 10**5:
                if add > 1:
                    add -= 1
                break
        print(i + add)
        break
    print(i)
    break
0