結果

問題 No.2126 MEX Game
ユーザー ShirotsumeShirotsume
提出日時 2022-11-18 22:47:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 820 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 101,020 KB
最終ジャッジ日時 2024-09-20 03:16:52
合計ジャッジ時間 3,359 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
75,696 KB
testcase_01 AC 58 ms
75,696 KB
testcase_02 AC 57 ms
75,776 KB
testcase_03 AC 57 ms
75,576 KB
testcase_04 AC 57 ms
75,760 KB
testcase_05 AC 58 ms
75,864 KB
testcase_06 AC 58 ms
75,636 KB
testcase_07 AC 56 ms
75,792 KB
testcase_08 AC 60 ms
75,624 KB
testcase_09 AC 58 ms
75,712 KB
testcase_10 AC 99 ms
98,240 KB
testcase_11 AC 96 ms
98,240 KB
testcase_12 AC 100 ms
98,080 KB
testcase_13 AC 95 ms
98,132 KB
testcase_14 WA -
testcase_15 AC 95 ms
99,920 KB
testcase_16 AC 96 ms
100,004 KB
testcase_17 AC 86 ms
89,784 KB
testcase_18 AC 85 ms
90,144 KB
testcase_19 AC 79 ms
88,840 KB
testcase_20 AC 76 ms
88,768 KB
testcase_21 AC 84 ms
101,020 KB
testcase_22 AC 57 ms
75,772 KB
testcase_23 AC 58 ms
75,988 KB
testcase_24 AC 57 ms
75,704 KB
testcase_25 AC 59 ms
75,768 KB
testcase_26 AC 57 ms
75,708 KB
testcase_27 AC 58 ms
75,492 KB
testcase_28 AC 56 ms
75,708 KB
testcase_29 AC 60 ms
75,800 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 + 2):
    if A[i] >= 3:
        yoyu = True
ans = -1
for i in range(0, 10 ** 5 + 2):
        if A[i] == 1 and yoyu:
            A[i] = 2
            yoyu = False
        elif A[i] <= 1:
            ans = i
            break
k = max(A)
A[k] -= 1
yoyu = True
for i in range(0, 10 ** 5 + 2):
        if A[i] == 1 and yoyu:
            yoyu = False
        elif A[i] <= 1:
            ans = max(ans, i)
            break


print(ans)

0