結果

問題 No.2335 Jump
ユーザー 310icecrystal310icecrystal
提出日時 2023-06-03 03:54:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 68 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 83,720 KB
最終ジャッジ日時 2024-06-09 03:17:45
合計ジャッジ時間 1,818 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,140 KB
testcase_01 AC 30 ms
52,276 KB
testcase_02 AC 31 ms
51,816 KB
testcase_03 AC 30 ms
52,004 KB
testcase_04 AC 31 ms
51,964 KB
testcase_05 AC 30 ms
52,548 KB
testcase_06 AC 30 ms
52,560 KB
testcase_07 AC 30 ms
53,764 KB
testcase_08 AC 30 ms
52,072 KB
testcase_09 AC 29 ms
52,796 KB
testcase_10 AC 31 ms
54,352 KB
testcase_11 AC 31 ms
52,892 KB
testcase_12 AC 51 ms
83,144 KB
testcase_13 AC 53 ms
82,088 KB
testcase_14 AC 52 ms
83,548 KB
testcase_15 AC 52 ms
83,348 KB
testcase_16 AC 53 ms
82,416 KB
testcase_17 AC 50 ms
79,576 KB
testcase_18 AC 53 ms
83,720 KB
testcase_19 AC 53 ms
83,052 KB
testcase_20 AC 50 ms
79,580 KB
testcase_21 AC 50 ms
80,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(max(A)-N)
0