結果

問題 No.2335 Jump
ユーザー rlangevinrlangevin
提出日時 2023-06-02 21:30:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 70 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 87,088 KB
実行使用メモリ 90,596 KB
最終ジャッジ日時 2023-08-28 02:46:37
合計ジャッジ時間 3,069 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,288 KB
testcase_01 AC 69 ms
71,316 KB
testcase_02 AC 70 ms
71,192 KB
testcase_03 AC 67 ms
71,520 KB
testcase_04 AC 67 ms
71,188 KB
testcase_05 AC 69 ms
71,360 KB
testcase_06 AC 67 ms
71,312 KB
testcase_07 AC 70 ms
71,524 KB
testcase_08 AC 69 ms
71,212 KB
testcase_09 AC 69 ms
71,180 KB
testcase_10 AC 69 ms
71,340 KB
testcase_11 AC 68 ms
71,208 KB
testcase_12 AC 90 ms
90,584 KB
testcase_13 AC 89 ms
90,552 KB
testcase_14 AC 90 ms
90,552 KB
testcase_15 AC 90 ms
90,516 KB
testcase_16 AC 90 ms
90,524 KB
testcase_17 AC 88 ms
89,548 KB
testcase_18 AC 92 ms
90,552 KB
testcase_19 AC 91 ms
90,596 KB
testcase_20 AC 89 ms
89,672 KB
testcase_21 AC 89 ms
89,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
print(A[-1] - N)
0