結果

問題 No.2126 MEX Game
ユーザー ShirotsumeShirotsume
提出日時 2022-11-18 22:35:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 834 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 81,720 KB
実行使用メモリ 100,824 KB
最終ジャッジ日時 2024-09-20 03:02:53
合計ジャッジ時間 3,240 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
75,440 KB
testcase_01 AC 57 ms
75,516 KB
testcase_02 AC 55 ms
75,680 KB
testcase_03 AC 56 ms
75,640 KB
testcase_04 AC 56 ms
75,548 KB
testcase_05 AC 55 ms
75,700 KB
testcase_06 AC 59 ms
75,516 KB
testcase_07 AC 54 ms
75,472 KB
testcase_08 AC 54 ms
75,528 KB
testcase_09 AC 57 ms
75,828 KB
testcase_10 AC 95 ms
97,680 KB
testcase_11 AC 92 ms
97,700 KB
testcase_12 AC 89 ms
98,068 KB
testcase_13 AC 95 ms
98,176 KB
testcase_14 WA -
testcase_15 AC 94 ms
100,176 KB
testcase_16 AC 90 ms
100,060 KB
testcase_17 AC 81 ms
89,604 KB
testcase_18 AC 82 ms
89,624 KB
testcase_19 AC 74 ms
88,836 KB
testcase_20 AC 74 ms
88,592 KB
testcase_21 AC 84 ms
100,824 KB
testcase_22 AC 57 ms
75,520 KB
testcase_23 AC 58 ms
75,564 KB
testcase_24 AC 58 ms
75,644 KB
testcase_25 AC 58 ms
75,688 KB
testcase_26 AC 58 ms
75,496 KB
testcase_27 AC 56 ms
75,784 KB
testcase_28 AC 56 ms
75,872 KB
testcase_29 AC 57 ms
75,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
sys.setrecursionlimit(5 * 10 ** 5)
from pypyjit import set_param
set_param('max_unroll_recursion=-1')
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n = ii()

A = Counter(li())
yoyu = False
for i in range(0, 10 ** 5 + 1):
    if A[i] >= 3:
        yoyu = True
ans = -1
for i in range(0, 10 ** 5 + 1):
        if A[i] == 1 and yoyu:
            A[i] = 2
            yoyu = False
        elif A[i] <= 1:
            ans = i
            break

A[max(A)] -= 1
yoyu = True
for i in range(0, 10 ** 5 + 1):
        if A[i] == 1 and yoyu:
            A[i] = 2
            yoyu = False
        elif A[i] <= 1:
            ans = max(ans, i)
            break

print(ans)
0