結果

問題 No.2126 MEX Game
ユーザー 👑 KazunKazun
提出日時 2022-11-18 22:05:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 543 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-09-20 02:26:07
合計ジャッジ時間 2,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,376 KB
testcase_01 AC 42 ms
53,120 KB
testcase_02 AC 41 ms
53,248 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 42 ms
54,144 KB
testcase_05 AC 45 ms
53,376 KB
testcase_06 AC 43 ms
53,376 KB
testcase_07 WA -
testcase_08 AC 41 ms
53,376 KB
testcase_09 AC 42 ms
53,224 KB
testcase_10 AC 68 ms
81,792 KB
testcase_11 AC 68 ms
82,432 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 67 ms
82,432 KB
testcase_15 AC 71 ms
81,536 KB
testcase_16 AC 71 ms
81,536 KB
testcase_17 AC 67 ms
81,280 KB
testcase_18 AC 70 ms
81,664 KB
testcase_19 AC 63 ms
78,976 KB
testcase_20 AC 64 ms
79,232 KB
testcase_21 AC 67 ms
81,920 KB
testcase_22 AC 43 ms
53,504 KB
testcase_23 AC 43 ms
53,632 KB
testcase_24 AC 44 ms
53,120 KB
testcase_25 AC 41 ms
53,888 KB
testcase_26 WA -
testcase_27 AC 43 ms
53,376 KB
testcase_28 AC 41 ms
53,248 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