結果

問題 No.2335 Jump
ユーザー dangodango
提出日時 2023-06-14 16:07:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 53 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 87,124 KB
実行使用メモリ 84,712 KB
最終ジャッジ日時 2023-09-05 03:50:05
合計ジャッジ時間 4,070 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,224 KB
testcase_01 AC 70 ms
71,376 KB
testcase_02 AC 71 ms
71,232 KB
testcase_03 AC 73 ms
71,328 KB
testcase_04 AC 71 ms
71,388 KB
testcase_05 AC 70 ms
71,220 KB
testcase_06 AC 71 ms
71,352 KB
testcase_07 AC 71 ms
71,448 KB
testcase_08 AC 69 ms
71,240 KB
testcase_09 AC 71 ms
71,088 KB
testcase_10 AC 72 ms
71,368 KB
testcase_11 AC 72 ms
71,396 KB
testcase_12 AC 87 ms
84,712 KB
testcase_13 AC 88 ms
84,400 KB
testcase_14 AC 88 ms
84,500 KB
testcase_15 AC 87 ms
84,364 KB
testcase_16 AC 87 ms
84,484 KB
testcase_17 AC 84 ms
83,124 KB
testcase_18 AC 90 ms
84,288 KB
testcase_19 AC 88 ms
84,280 KB
testcase_20 AC 86 ms
83,424 KB
testcase_21 AC 88 ms
83,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
print(max(map(int,input().split()))-N)
0