結果

問題 No.2126 MEX Game
ユーザー ニックネームニックネーム
提出日時 2022-11-18 22:00:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,256 KB
最終ジャッジ日時 2024-09-20 02:22:21
合計ジャッジ時間 2,409 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,520 KB
testcase_01 AC 29 ms
11,392 KB
testcase_02 AC 31 ms
11,392 KB
testcase_03 AC 32 ms
11,392 KB
testcase_04 AC 32 ms
11,392 KB
testcase_05 AC 29 ms
11,392 KB
testcase_06 AC 32 ms
11,520 KB
testcase_07 AC 28 ms
11,392 KB
testcase_08 AC 28 ms
11,392 KB
testcase_09 AC 30 ms
11,392 KB
testcase_10 AC 80 ms
21,124 KB
testcase_11 AC 82 ms
21,128 KB
testcase_12 AC 83 ms
21,256 KB
testcase_13 AC 78 ms
21,128 KB
testcase_14 AC 73 ms
20,512 KB
testcase_15 AC 75 ms
20,520 KB
testcase_16 AC 72 ms
20,360 KB
testcase_17 AC 72 ms
20,208 KB
testcase_18 AC 73 ms
20,136 KB
testcase_19 AC 60 ms
12,500 KB
testcase_20 AC 64 ms
12,496 KB
testcase_21 AC 74 ms
20,520 KB
testcase_22 AC 29 ms
11,520 KB
testcase_23 AC 30 ms
11,392 KB
testcase_24 AC 30 ms
11,392 KB
testcase_25 AC 29 ms
11,392 KB
testcase_26 AC 29 ms
11,392 KB
testcase_27 AC 28 ms
11,264 KB
testcase_28 AC 28 ms
11,392 KB
testcase_29 AC 30 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = int(input())
a = list(map(int, input().split()))
m = max(a)
b = [0]*100001
for v in a: b[v] += 1
f = g = False
for i, v in enumerate(b):
    if v == 0:
        if f and not g and i > m: print(i-1); break
        else: print(i); break
    if v == 1:
        if f: print(i); break
        else: f = True
    if v > 2: g = True
0