結果

問題 No.2126 MEX Game
ユーザー 👑 KazunKazun
提出日時 2022-11-18 22:30:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,696 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-09-20 02:57:13
合計ジャッジ時間 3,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 45 ms
58,752 KB
testcase_02 AC 41 ms
53,248 KB
testcase_03 AC 43 ms
53,376 KB
testcase_04 AC 49 ms
59,392 KB
testcase_05 AC 42 ms
53,376 KB
testcase_06 AC 46 ms
53,504 KB
testcase_07 AC 41 ms
53,376 KB
testcase_08 AC 42 ms
53,376 KB
testcase_09 AC 41 ms
53,504 KB
testcase_10 AC 71 ms
82,304 KB
testcase_11 AC 68 ms
82,816 KB
testcase_12 AC 70 ms
82,304 KB
testcase_13 AC 67 ms
82,816 KB
testcase_14 AC 64 ms
81,664 KB
testcase_15 AC 66 ms
81,792 KB
testcase_16 AC 64 ms
82,176 KB
testcase_17 AC 66 ms
81,152 KB
testcase_18 AC 66 ms
81,664 KB
testcase_19 AC 61 ms
79,488 KB
testcase_20 AC 61 ms
79,744 KB
testcase_21 AC 67 ms
82,688 KB
testcase_22 AC 46 ms
53,376 KB
testcase_23 AC 42 ms
53,376 KB
testcase_24 AC 42 ms
53,504 KB
testcase_25 AC 42 ms
53,632 KB
testcase_26 AC 42 ms
53,880 KB
testcase_27 AC 44 ms
54,016 KB
testcase_28 AC 43 ms
53,248 KB
testcase_29 AC 42 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#==================================================
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]>=3:
            alpha=a
            break
    else:
        alpha=A_max

    C[alpha]-=1

    beta=0
    while C[beta]>=2:
        beta+=1

    C[beta]+=1

    mex=0
    while C[mex]>=2:
        mex+=1
    return mex

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