結果

問題 No.2126 MEX Game
ユーザー ntudantuda
提出日時 2022-11-19 12:41:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,744 KB
最終ジャッジ日時 2024-09-20 13:30:34
合計ジャッジ時間 2,927 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 32 ms
11,520 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 85 ms
20,740 KB
testcase_11 AC 86 ms
20,744 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 76 ms
20,676 KB
testcase_16 AC 76 ms
20,640 KB
testcase_17 AC 78 ms
20,228 KB
testcase_18 AC 75 ms
20,424 KB
testcase_19 AC 64 ms
12,644 KB
testcase_20 AC 64 ms
12,648 KB
testcase_21 WA -
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 32 ms
10,880 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:
            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