結果

問題 No.2126 MEX Game
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-11-18 22:48:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 544 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-09-20 03:17:33
合計ジャッジ時間 2,822 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,632 KB
testcase_01 AC 39 ms
52,992 KB
testcase_02 AC 38 ms
53,888 KB
testcase_03 AC 39 ms
53,504 KB
testcase_04 AC 38 ms
53,248 KB
testcase_05 AC 40 ms
53,376 KB
testcase_06 AC 39 ms
53,248 KB
testcase_07 AC 40 ms
54,016 KB
testcase_08 AC 40 ms
53,760 KB
testcase_09 AC 39 ms
53,248 KB
testcase_10 AC 96 ms
93,824 KB
testcase_11 AC 96 ms
94,336 KB
testcase_12 AC 96 ms
95,104 KB
testcase_13 AC 95 ms
94,592 KB
testcase_14 AC 94 ms
95,232 KB
testcase_15 AC 77 ms
81,536 KB
testcase_16 AC 77 ms
81,152 KB
testcase_17 AC 84 ms
85,120 KB
testcase_18 AC 85 ms
85,376 KB
testcase_19 AC 62 ms
80,256 KB
testcase_20 AC 57 ms
78,336 KB
testcase_21 AC 97 ms
100,352 KB
testcase_22 AC 40 ms
53,764 KB
testcase_23 AC 39 ms
53,632 KB
testcase_24 AC 39 ms
53,632 KB
testcase_25 WA -
testcase_26 AC 39 ms
53,424 KB
testcase_27 AC 39 ms
53,504 KB
testcase_28 AC 40 ms
54,016 KB
testcase_29 AC 39 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = int(input())
A = list(map(int,input().split()))
A.sort()
if A[0] != 0:
    print(0)
    exit()

C = Counter(A)

s = sorted(C.keys())

more = 0
done = 0
last = -1
for x in s:
    if last+1 != x:
        print(last+1)
        exit()
    last = x
    if C[x] == 2:
        continue
    if C[x] > 2:
        more = 1
        continue

    if x != max(s) or more:
        if done:
            print(x)
            exit()
        else:
            done = 1
    else:
        print(x)
        exit()


print(last+1)
0