結果

問題 No.2335 Jump
ユーザー gr1msl3ygr1msl3y
提出日時 2023-06-11 12:47:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 68 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 87,252 KB
実行使用メモリ 90,720 KB
最終ジャッジ日時 2023-08-31 01:55:44
合計ジャッジ時間 4,315 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
70,956 KB
testcase_01 AC 68 ms
71,016 KB
testcase_02 AC 70 ms
71,292 KB
testcase_03 AC 70 ms
70,952 KB
testcase_04 AC 68 ms
70,816 KB
testcase_05 AC 66 ms
71,088 KB
testcase_06 AC 67 ms
71,184 KB
testcase_07 AC 67 ms
71,376 KB
testcase_08 AC 68 ms
70,948 KB
testcase_09 AC 68 ms
71,092 KB
testcase_10 AC 70 ms
71,292 KB
testcase_11 AC 70 ms
71,180 KB
testcase_12 AC 88 ms
90,316 KB
testcase_13 AC 88 ms
90,320 KB
testcase_14 AC 91 ms
90,452 KB
testcase_15 AC 89 ms
90,720 KB
testcase_16 AC 89 ms
90,604 KB
testcase_17 AC 85 ms
89,176 KB
testcase_18 AC 88 ms
90,480 KB
testcase_19 AC 87 ms
90,404 KB
testcase_20 AC 84 ms
89,380 KB
testcase_21 AC 86 ms
89,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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