結果

問題 No.2335 Jump
ユーザー 倉
提出日時 2023-06-02 22:11:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,736 KB
最終ジャッジ日時 2024-06-08 23:26:16
合計ジャッジ時間 2,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,784 KB
testcase_01 AC 48 ms
54,272 KB
testcase_02 AC 49 ms
54,784 KB
testcase_03 AC 50 ms
54,400 KB
testcase_04 AC 51 ms
54,272 KB
testcase_05 AC 50 ms
54,400 KB
testcase_06 AC 50 ms
54,400 KB
testcase_07 AC 51 ms
55,040 KB
testcase_08 AC 51 ms
55,296 KB
testcase_09 AC 52 ms
54,784 KB
testcase_10 AC 50 ms
55,040 KB
testcase_11 AC 49 ms
55,296 KB
testcase_12 AC 82 ms
84,480 KB
testcase_13 AC 80 ms
84,480 KB
testcase_14 AC 79 ms
84,736 KB
testcase_15 AC 80 ms
84,608 KB
testcase_16 AC 79 ms
84,480 KB
testcase_17 AC 77 ms
82,304 KB
testcase_18 AC 80 ms
84,736 KB
testcase_19 AC 80 ms
84,736 KB
testcase_20 AC 77 ms
81,536 KB
testcase_21 AC 77 ms
82,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from functools import partial
# import pypyjit
# pypyjit.set_param('max_unroll_recursion = -1')

sys.setrecursionlimit(500005)
stdin = sys.stdin

ns = lambda: stdin.readline().strip()
ni = lambda: int(ns())
na = lambda: list(map(int, stdin.readline().split()))
nz = lambda: list(map(lambda x: int(x)-1, stdin.readline().split())) # 遅い
printa = partial(print, sep="\n") # printa(*A) で各要素を改行して出力
mod = 1000000007 # 998244353
inf = 10 ** 18

N = ni()
A = na()

A.insert(0, 0)

ans = 0
for i in range(1, N+1)[::-1]:
    ans += A[i] - A[i-1] - 1

print(ans)
0