結果

問題 No.2126 MEX Game
ユーザー ntudantuda
提出日時 2022-11-19 12:45:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,800 KB
最終ジャッジ日時 2024-09-20 13:33:18
合計ジャッジ時間 2,578 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 28 ms
11,520 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 79 ms
20,740 KB
testcase_11 AC 80 ms
20,736 KB
testcase_12 AC 76 ms
20,740 KB
testcase_13 AC 74 ms
20,744 KB
testcase_14 AC 69 ms
20,800 KB
testcase_15 AC 67 ms
20,672 KB
testcase_16 AC 70 ms
20,644 KB
testcase_17 AC 69 ms
20,228 KB
testcase_18 AC 71 ms
20,424 KB
testcase_19 AC 60 ms
12,520 KB
testcase_20 AC 61 ms
12,648 KB
testcase_21 AC 72 ms
20,676 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 27 ms
10,880 KB
testcase_24 AC 27 ms
10,752 KB
testcase_25 AC 27 ms
10,880 KB
testcase_26 AC 27 ms
10,752 KB
testcase_27 AC 26 ms
10,752 KB
testcase_28 AC 26 ms
10,752 KB
testcase_29 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
maxa = max(A)
X = [0] * (maxa + 1)
for a in A:
    X[a] += 1
cnt = 0
for i in range(maxa + 1):
    if X[i] == 0:
        i -= 1
        break
    elif X[i] == 1:
        if cnt == 0:
            cnt += 1
        else:
            i -= 1
            break

if cnt == 0:
    print(i + 1)
else:
    if sum(X[:i + 1]) >= 2 * (i + 1):
        print(i + 1)
    elif N >= 2 * (i + 1):
        print(i + 1)
    else:
        print(i)
0