結果

問題 No.2335 Jump
ユーザー flygonflygon
提出日時 2023-06-02 21:33:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 84,736 KB
最終ジャッジ日時 2024-06-08 22:22:43
合計ジャッジ時間 2,546 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,400 KB
testcase_01 AC 49 ms
54,272 KB
testcase_02 AC 51 ms
54,272 KB
testcase_03 AC 49 ms
53,888 KB
testcase_04 AC 48 ms
53,888 KB
testcase_05 AC 48 ms
54,144 KB
testcase_06 AC 47 ms
54,144 KB
testcase_07 AC 48 ms
54,528 KB
testcase_08 AC 48 ms
54,912 KB
testcase_09 AC 49 ms
54,528 KB
testcase_10 AC 48 ms
54,912 KB
testcase_11 AC 49 ms
54,272 KB
testcase_12 AC 79 ms
84,224 KB
testcase_13 AC 79 ms
84,352 KB
testcase_14 AC 78 ms
83,968 KB
testcase_15 AC 81 ms
83,968 KB
testcase_16 AC 79 ms
84,096 KB
testcase_17 AC 76 ms
81,152 KB
testcase_18 AC 80 ms
84,736 KB
testcase_19 AC 79 ms
84,096 KB
testcase_20 AC 76 ms
81,152 KB
testcase_21 AC 75 ms
81,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n = int(input())
a = list(map(int,input().split()))

ans = 0
for i in range(n-1):
    ans += a[i+1] - a[i] - 1

ans += a[0]-1
print(ans)
0