結果

問題 No.2126 MEX Game
ユーザー 👑 KazunKazun
提出日時 2022-11-18 22:05:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 543 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 81,832 KB
実行使用メモリ 82,668 KB
最終ジャッジ日時 2023-10-20 06:54:11
合計ジャッジ時間 2,904 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,512 KB
testcase_01 AC 37 ms
53,512 KB
testcase_02 AC 37 ms
53,512 KB
testcase_03 AC 39 ms
53,512 KB
testcase_04 AC 39 ms
54,296 KB
testcase_05 AC 37 ms
53,512 KB
testcase_06 AC 39 ms
53,512 KB
testcase_07 WA -
testcase_08 AC 37 ms
53,588 KB
testcase_09 AC 38 ms
53,512 KB
testcase_10 AC 65 ms
82,324 KB
testcase_11 AC 62 ms
82,324 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 64 ms
82,668 KB
testcase_15 AC 63 ms
82,668 KB
testcase_16 AC 60 ms
82,616 KB
testcase_17 AC 60 ms
81,908 KB
testcase_18 AC 61 ms
82,032 KB
testcase_19 AC 58 ms
81,204 KB
testcase_20 AC 58 ms
81,204 KB
testcase_21 AC 60 ms
82,668 KB
testcase_22 AC 38 ms
53,512 KB
testcase_23 AC 39 ms
53,512 KB
testcase_24 AC 42 ms
53,512 KB
testcase_25 AC 38 ms
53,512 KB
testcase_26 WA -
testcase_27 AC 44 ms
53,512 KB
testcase_28 AC 42 ms
53,512 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def mex(S):
    x=0
    while x in S:
        x+=1
    return x

def solve():
    from collections import Counter

    N=int(input())
    A=list(map(int,input().split()))

    A_max=max(A)
    C=[0]*(max(A)+2)
    for a in A:
        C[a]+=1

    for a in range(A_max+2):
        if C[a]==0:
            return a
        elif C[a]==1:
            for b in range(a+1,A_max+1):
                if C[b]:
                    return a+1
            else:
                return a

#==================================================
print(solve())
0