結果

問題 No.2335 Jump
ユーザー 310icecrystal310icecrystal
提出日時 2023-06-03 03:54:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 68 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 87,096 KB
実行使用メモリ 91,080 KB
最終ジャッジ日時 2023-08-28 07:36:15
合計ジャッジ時間 3,405 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
71,340 KB
testcase_01 AC 66 ms
71,132 KB
testcase_02 AC 68 ms
71,576 KB
testcase_03 AC 68 ms
71,204 KB
testcase_04 AC 67 ms
71,136 KB
testcase_05 AC 67 ms
71,336 KB
testcase_06 AC 67 ms
71,284 KB
testcase_07 AC 66 ms
71,300 KB
testcase_08 AC 68 ms
71,392 KB
testcase_09 AC 68 ms
71,424 KB
testcase_10 AC 68 ms
71,520 KB
testcase_11 AC 67 ms
71,432 KB
testcase_12 AC 90 ms
90,680 KB
testcase_13 AC 89 ms
90,932 KB
testcase_14 AC 89 ms
90,668 KB
testcase_15 AC 89 ms
90,692 KB
testcase_16 AC 88 ms
90,708 KB
testcase_17 AC 87 ms
89,628 KB
testcase_18 AC 89 ms
90,848 KB
testcase_19 AC 90 ms
91,080 KB
testcase_20 AC 86 ms
89,796 KB
testcase_21 AC 88 ms
89,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

print(max(A)-N)
0