結果

問題 No.2126 MEX Game
ユーザー 👑 KazunKazun
提出日時 2022-11-18 21:55:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 347 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 102,664 KB
最終ジャッジ日時 2024-09-20 02:18:31
合計ジャッジ時間 2,835 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,016 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 39 ms
53,632 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 WA -
testcase_06 AC 42 ms
53,504 KB
testcase_07 WA -
testcase_08 AC 40 ms
53,504 KB
testcase_09 AC 40 ms
53,248 KB
testcase_10 AC 89 ms
101,120 KB
testcase_11 AC 92 ms
100,992 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 89 ms
98,944 KB
testcase_16 AC 88 ms
99,072 KB
testcase_17 AC 72 ms
83,968 KB
testcase_18 AC 71 ms
84,992 KB
testcase_19 AC 64 ms
80,384 KB
testcase_20 AC 62 ms
80,128 KB
testcase_21 WA -
testcase_22 AC 41 ms
54,016 KB
testcase_23 AC 40 ms
53,504 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
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()))
    CA=Counter(A)

    S=set()
    for a in CA:
        if CA[a]>=2:
            S.add(a)
    return mex(S)

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