結果

問題 No.2335 Jump
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-06-02 21:26:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 87,036 KB
実行使用メモリ 89,876 KB
最終ジャッジ日時 2023-08-28 02:43:09
合計ジャッジ時間 3,372 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,312 KB
testcase_01 AC 74 ms
71,356 KB
testcase_02 AC 74 ms
71,268 KB
testcase_03 AC 73 ms
71,356 KB
testcase_04 AC 74 ms
71,148 KB
testcase_05 AC 75 ms
71,240 KB
testcase_06 AC 75 ms
71,492 KB
testcase_07 AC 75 ms
71,396 KB
testcase_08 AC 74 ms
71,456 KB
testcase_09 AC 74 ms
71,228 KB
testcase_10 AC 74 ms
71,104 KB
testcase_11 AC 73 ms
71,432 KB
testcase_12 AC 94 ms
89,876 KB
testcase_13 AC 95 ms
89,756 KB
testcase_14 AC 92 ms
89,644 KB
testcase_15 AC 94 ms
89,696 KB
testcase_16 AC 95 ms
89,668 KB
testcase_17 AC 92 ms
89,152 KB
testcase_18 AC 94 ms
89,648 KB
testcase_19 AC 96 ms
89,716 KB
testcase_20 AC 93 ms
88,936 KB
testcase_21 AC 95 ms
89,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

塊ごと、横に1動かせる



"""

import sys
from sys import stdin

N = int(stdin.readline())

A = list(map(int,stdin.readline().split()))


print (A[-1] - N)
0