結果

問題 No.2126 MEX Game
コンテスト
ユーザー gr1msl3y
提出日時 2022-11-26 11:19:28
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
WA  
実行時間 -
コード長 359 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 203 ms
コンパイル使用メモリ 84,992 KB
実行使用メモリ 83,436 KB
最終ジャッジ日時 2026-04-19 00:23:54
合計ジャッジ時間 5,863 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

N = int(input())
A = list(map(int, input().split()))
A.sort()
indl = 0
indr = N
M = 10**5
for i in range(M):
    ct = 0
    while indl < indr and A[indl] == i:
        ct += 1
        indl += 1
    if ct == 0:
        print(i)
        exit()
    if ct == 1:
        if indl == indr:
            print(i)
            exit()
        else:
            indr -= 1
0