結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,484 KB
testcase_01 AC 42 ms
53,496 KB
testcase_02 AC 39 ms
53,672 KB
testcase_03 AC 40 ms
54,300 KB
testcase_04 AC 40 ms
53,644 KB
testcase_05 AC 40 ms
54,732 KB
testcase_06 AC 40 ms
54,640 KB
testcase_07 AC 43 ms
54,376 KB
testcase_08 AC 39 ms
53,776 KB
testcase_09 AC 41 ms
54,160 KB
testcase_10 AC 79 ms
92,280 KB
testcase_11 AC 79 ms
91,492 KB
testcase_12 AC 78 ms
91,844 KB
testcase_13 AC 79 ms
92,508 KB
testcase_14 AC 79 ms
92,872 KB
testcase_15 AC 77 ms
93,772 KB
testcase_16 AC 80 ms
93,324 KB
testcase_17 AC 73 ms
83,984 KB
testcase_18 AC 68 ms
83,500 KB
testcase_19 AC 62 ms
80,560 KB
testcase_20 AC 61 ms
82,040 KB
testcase_21 AC 79 ms
98,516 KB
testcase_22 AC 41 ms
53,840 KB
testcase_23 AC 40 ms
53,840 KB
testcase_24 AC 40 ms
55,528 KB
testcase_25 WA -
testcase_26 AC 40 ms
54,800 KB
testcase_27 AC 40 ms
54,592 KB
testcase_28 AC 39 ms
53,972 KB
testcase_29 AC 39 ms
53,864 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 + 10):
        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(min(ans, N))


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