結果

問題 No.2126 MEX Game
ユーザー titiatitia
提出日時 2022-12-06 01:36:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,972 KB
最終ジャッジ日時 2024-10-12 21:15:59
合計ジャッジ時間 5,065 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
11,392 KB
testcase_01 AC 80 ms
11,392 KB
testcase_02 AC 94 ms
11,392 KB
testcase_03 AC 83 ms
11,520 KB
testcase_04 AC 93 ms
11,392 KB
testcase_05 AC 84 ms
11,392 KB
testcase_06 AC 79 ms
11,392 KB
testcase_07 AC 83 ms
11,520 KB
testcase_08 AC 92 ms
11,392 KB
testcase_09 AC 93 ms
11,520 KB
testcase_10 AC 158 ms
21,984 KB
testcase_11 AC 159 ms
21,968 KB
testcase_12 AC 142 ms
21,852 KB
testcase_13 AC 140 ms
22,012 KB
testcase_14 AC 145 ms
22,216 KB
testcase_15 AC 146 ms
22,296 KB
testcase_16 AC 144 ms
21,732 KB
testcase_17 AC 145 ms
19,360 KB
testcase_18 AC 144 ms
19,744 KB
testcase_19 AC 108 ms
12,372 KB
testcase_20 AC 112 ms
12,496 KB
testcase_21 AC 131 ms
25,972 KB
testcase_22 AC 85 ms
11,520 KB
testcase_23 AC 90 ms
11,520 KB
testcase_24 AC 84 ms
11,520 KB
testcase_25 AC 82 ms
11,520 KB
testcase_26 AC 80 ms
11,520 KB
testcase_27 AC 85 ms
11,392 KB
testcase_28 AC 83 ms
11,392 KB
testcase_29 AC 81 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import Counter

N=int(input())
A=list(map(int,input().split()))

C=Counter(sorted(A))

B=[C[i] for i in range(10**5)]

ind=-1
for i in range(10**5):
    if B[i]==1:
        ind=i
        break

for i in range(10**5):
    if B[i]>2 and ind!=-1:
        B[i]-=1
        B[ind]+=1
        ind=-1

for i in range(10**5-1,-1,-1):
    if B[i]>=1 and ind!=-1 and i>ind:
        B[i]-=1
        B[ind]+=1
        break

for i in range(10**5):
    if B[i]<2:
        print(i)
        break

0