結果

問題 No.2126 MEX Game
ユーザー pitPpitP
提出日時 2022-11-18 22:36:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 81,672 KB
実行使用メモリ 82,004 KB
最終ジャッジ日時 2024-09-20 03:04:20
合計ジャッジ時間 2,872 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,984 KB
testcase_01 AC 35 ms
52,736 KB
testcase_02 AC 35 ms
52,736 KB
testcase_03 AC 39 ms
58,368 KB
testcase_04 AC 36 ms
52,736 KB
testcase_05 AC 38 ms
58,368 KB
testcase_06 AC 36 ms
52,736 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 39 ms
52,352 KB
testcase_09 AC 36 ms
53,120 KB
testcase_10 AC 58 ms
80,896 KB
testcase_11 AC 59 ms
81,152 KB
testcase_12 AC 63 ms
81,792 KB
testcase_13 AC 63 ms
82,004 KB
testcase_14 AC 59 ms
80,896 KB
testcase_15 AC 60 ms
80,768 KB
testcase_16 AC 59 ms
80,640 KB
testcase_17 AC 60 ms
80,128 KB
testcase_18 AC 61 ms
80,128 KB
testcase_19 AC 55 ms
78,208 KB
testcase_20 AC 54 ms
78,464 KB
testcase_21 AC 58 ms
80,640 KB
testcase_22 AC 38 ms
57,856 KB
testcase_23 AC 35 ms
52,352 KB
testcase_24 AC 38 ms
58,368 KB
testcase_25 AC 37 ms
58,368 KB
testcase_26 AC 35 ms
52,480 KB
testcase_27 AC 36 ms
52,864 KB
testcase_28 AC 39 ms
58,496 KB
testcase_29 AC 37 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
cnt = [0] * (10**5+10)
A = list(map(int,input().split()))
for i in range(N):
    cnt[A[i]] += 1

r = 10**5+4
flag = True #一度だけ
res = 0
for i in range(10**5+1):
    #print(i,cnt[:5],res)
    if cnt[i] >= 2:
        res += cnt[i] - 2
    elif cnt[i] == 0:
        print(i)
        exit()
    elif flag == False: # cnt[i] == 1:
        print(i)
        exit()
    elif flag == True: # cnt[i] == 1:
        flag = False
        if res :
            cnt[i] += 1
        else:
            while r > i:
                if cnt[r] == 0:
                    r -= 1
                else:
                    cnt[r] -= 1
                    break
            else:
                print(i)
                exit()
0