結果

問題 No.2126 MEX Game
ユーザー H20H20
提出日時 2022-11-18 22:15:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 101,108 KB
最終ジャッジ日時 2024-09-20 02:36:11
合計ジャッジ時間 2,672 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,084 KB
testcase_01 AC 39 ms
54,356 KB
testcase_02 AC 39 ms
53,672 KB
testcase_03 AC 38 ms
55,460 KB
testcase_04 AC 39 ms
53,572 KB
testcase_05 AC 39 ms
53,812 KB
testcase_06 AC 38 ms
53,912 KB
testcase_07 AC 39 ms
53,912 KB
testcase_08 AC 37 ms
54,020 KB
testcase_09 AC 39 ms
54,312 KB
testcase_10 AC 79 ms
94,004 KB
testcase_11 AC 78 ms
94,528 KB
testcase_12 AC 81 ms
94,148 KB
testcase_13 AC 80 ms
94,692 KB
testcase_14 AC 81 ms
95,876 KB
testcase_15 AC 80 ms
95,572 KB
testcase_16 AC 79 ms
96,228 KB
testcase_17 AC 68 ms
85,076 KB
testcase_18 AC 68 ms
86,580 KB
testcase_19 AC 60 ms
81,312 KB
testcase_20 AC 63 ms
82,500 KB
testcase_21 AC 80 ms
101,108 KB
testcase_22 AC 38 ms
55,304 KB
testcase_23 AC 39 ms
54,516 KB
testcase_24 AC 39 ms
54,908 KB
testcase_25 AC 40 ms
54,180 KB
testcase_26 AC 40 ms
53,588 KB
testcase_27 AC 39 ms
53,592 KB
testcase_28 AC 38 ms
54,532 KB
testcase_29 AC 38 ms
53,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = int(input())
A = list(map(int, input().split())) 
CA = collections.Counter(A)
ans = 0
amari = False
for k,v in CA.items():
    if v>=3:
        amari=True
while CA[ans]>=2:
        ans+=1
if CA[ans] and ans*2+1<N:
    ans+=1
    if not amari:
        CA[max(A)]-=1
while CA[ans]>=2:
        ans+=1
print(ans)
0