結果

問題 No.2126 MEX Game
ユーザー tamatotamato
提出日時 2022-11-18 21:37:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 535 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 98,644 KB
最終ジャッジ日時 2024-09-20 02:01:53
合計ジャッジ時間 2,714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,228 KB
testcase_01 AC 43 ms
53,628 KB
testcase_02 AC 39 ms
53,688 KB
testcase_03 AC 38 ms
54,212 KB
testcase_04 AC 38 ms
53,880 KB
testcase_05 AC 39 ms
54,984 KB
testcase_06 AC 40 ms
54,708 KB
testcase_07 AC 40 ms
53,688 KB
testcase_08 AC 39 ms
54,592 KB
testcase_09 AC 39 ms
53,644 KB
testcase_10 AC 78 ms
93,480 KB
testcase_11 AC 76 ms
91,984 KB
testcase_12 AC 77 ms
91,688 KB
testcase_13 AC 77 ms
92,400 KB
testcase_14 AC 77 ms
93,456 KB
testcase_15 AC 77 ms
93,376 KB
testcase_16 AC 75 ms
93,876 KB
testcase_17 AC 69 ms
84,540 KB
testcase_18 AC 67 ms
83,876 KB
testcase_19 AC 61 ms
81,932 KB
testcase_20 AC 60 ms
81,616 KB
testcase_21 AC 78 ms
98,644 KB
testcase_22 AC 40 ms
53,748 KB
testcase_23 AC 39 ms
53,928 KB
testcase_24 AC 40 ms
54,304 KB
testcase_25 WA -
testcase_26 AC 40 ms
54,776 KB
testcase_27 AC 40 ms
54,396 KB
testcase_28 AC 39 ms
55,300 KB
testcase_29 AC 37 ms
53,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    from collections import Counter
    input = sys.stdin.readline

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

    C = Counter(A)
    flg = 1
    ans = 0
    for a in range(10 ** 5 + 1):
        if C[a] == 0:
            break
        elif C[a] == 1:
            if flg and (a + 1) * 2 <= N:
                flg = 0
                ans += 1
            else:
                break
        else:
            ans += 1
    print(ans)


if __name__ == '__main__':
    main()
0