結果

問題 No.2126 MEX Game
ユーザー lloyzlloyz
提出日時 2022-11-18 22:39:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 415 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 25,296 KB
最終ジャッジ日時 2024-09-20 03:07:34
合計ジャッジ時間 3,353 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
10,624 KB
testcase_01 AC 60 ms
10,624 KB
testcase_02 AC 60 ms
10,752 KB
testcase_03 AC 60 ms
10,752 KB
testcase_04 AC 58 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 60 ms
10,624 KB
testcase_07 AC 64 ms
10,752 KB
testcase_08 AC 60 ms
10,624 KB
testcase_09 AC 61 ms
10,624 KB
testcase_10 AC 108 ms
21,428 KB
testcase_11 AC 111 ms
21,472 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 98 ms
21,468 KB
testcase_16 AC 105 ms
20,484 KB
testcase_17 AC 98 ms
20,080 KB
testcase_18 AC 99 ms
20,208 KB
testcase_19 AC 87 ms
12,492 KB
testcase_20 AC 85 ms
12,496 KB
testcase_21 WA -
testcase_22 AC 63 ms
10,752 KB
testcase_23 AC 60 ms
10,624 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 59 ms
10,752 KB
testcase_27 AC 62 ms
10,624 KB
testcase_28 WA -
testcase_29 AC 61 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n = int(input())
A = list(map(int, input().split()))
counter = Counter(A)

more2_num = 0
for i in range(10**5 + 1):
    if counter[i] > 2:
        more2_num += 1
for i in range(10**5 + 1):
    if counter[i] >= 2:
        continue
    if counter[i] == 1:
        if more2_num > 0:
            more2_num -= 1
            continue
        print(i)
        break
    print(i)
    break
0