結果

問題 No.2335 Jump
ユーザー とろちゃとろちゃ
提出日時 2023-06-02 22:08:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 969 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 94,976 KB
最終ジャッジ日時 2024-06-08 23:17:28
合計ジャッジ時間 2,432 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,556 KB
testcase_01 AC 41 ms
54,280 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 40 ms
54,648 KB
testcase_05 WA -
testcase_06 AC 41 ms
54,548 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 66 ms
84,868 KB
testcase_18 AC 69 ms
87,544 KB
testcase_19 AC 69 ms
88,344 KB
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit;pypyjit.set_param("max_unroll_recursion=-1")
# from bisect import *
from collections import *

# from heapq import *
# from itertools import *
# from math import *
# from datetime import *
# from decimal import*
# from string import ascii_lowercase,ascii_uppercase
# import numpy as np
import sys
import os

# sys.setrecursionlimit(10**6)
INF = 10**18
MOD = 998244353
# MOD = 10**9 + 7
File = open("input.txt", "r") if os.path.exists("input.txt") else sys.stdin


def input():
    return File.readline()[:-1]


# ///////////////////////////////////////////////////////////////////////////


N = int(input())
A = list(map(int, input().split()))
l = deque([[0, 0]])
for i in range(N):
    if i == 0:
        deque.append(l, [A[i], 1])
        continue
    if A[i] - A[i - 1] == 1:
        l[-1][1] += 1
    else:
        deque.append(l, [A[i], 1])

ans = 0
for i in range(len(l) - 1):
    pop = deque.pop(l)
    ans += pop[0] - l[-1][0] - 1


print(ans)
0