結果

問題 No.2126 MEX Game
ユーザー 遭難者遭難者
提出日時 2022-11-14 21:02:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 83,328 KB
最終ジャッジ日時 2024-09-19 01:44:25
合計ジャッジ時間 2,396 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,984 KB
testcase_01 AC 39 ms
58,240 KB
testcase_02 AC 36 ms
57,856 KB
testcase_03 AC 35 ms
57,728 KB
testcase_04 AC 35 ms
58,368 KB
testcase_05 AC 35 ms
58,496 KB
testcase_06 AC 35 ms
58,240 KB
testcase_07 AC 36 ms
58,368 KB
testcase_08 AC 39 ms
58,368 KB
testcase_09 AC 36 ms
57,984 KB
testcase_10 AC 57 ms
81,792 KB
testcase_11 AC 58 ms
81,664 KB
testcase_12 AC 60 ms
83,328 KB
testcase_13 AC 61 ms
82,944 KB
testcase_14 AC 58 ms
81,408 KB
testcase_15 AC 56 ms
81,024 KB
testcase_16 AC 56 ms
80,896 KB
testcase_17 AC 60 ms
80,640 KB
testcase_18 AC 60 ms
81,664 KB
testcase_19 AC 56 ms
78,976 KB
testcase_20 AC 58 ms
79,360 KB
testcase_21 AC 57 ms
80,640 KB
testcase_22 AC 37 ms
57,984 KB
testcase_23 AC 36 ms
58,112 KB
testcase_24 AC 35 ms
58,112 KB
testcase_25 AC 36 ms
58,624 KB
testcase_26 AC 36 ms
58,112 KB
testcase_27 AC 36 ms
57,984 KB
testcase_28 AC 38 ms
57,856 KB
testcase_29 AC 37 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
inf = 10 ** 5 + 1
c = [0] * inf
for i in list(map(int, input().split())):
    c[i] += 1
one, ok1, ok2 = 0, True, 0
for i in range(inf):
    if c[i] >= 1:
        ok2 = i
k = 0
while 1:
    ok1 &= c[k] <= 2
    if c[k] == 1:
        one += 1
    if c[k] == 0 or one > 1 or one == 1 and ok1 and k >= ok2:
        print(k)
        exit()
    k += 1
0