結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー tassei903tassei903
提出日時 2024-02-23 21:24:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 107,356 KB
最終ジャッジ日時 2024-09-29 05:23:46
合計ジャッジ時間 4,892 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,472 KB
testcase_01 AC 79 ms
76,360 KB
testcase_02 AC 68 ms
76,220 KB
testcase_03 AC 71 ms
76,220 KB
testcase_04 AC 81 ms
99,020 KB
testcase_05 AC 83 ms
104,312 KB
testcase_06 AC 74 ms
91,880 KB
testcase_07 AC 81 ms
103,860 KB
testcase_08 AC 73 ms
90,876 KB
testcase_09 AC 84 ms
107,356 KB
testcase_10 AC 84 ms
104,424 KB
testcase_11 AC 79 ms
96,112 KB
testcase_12 AC 83 ms
96,708 KB
testcase_13 AC 80 ms
104,280 KB
testcase_14 AC 86 ms
102,260 KB
testcase_15 AC 86 ms
101,884 KB
testcase_16 AC 93 ms
101,980 KB
testcase_17 AC 86 ms
102,048 KB
testcase_18 AC 87 ms
102,112 KB
testcase_19 AC 87 ms
102,028 KB
testcase_20 AC 86 ms
101,840 KB
testcase_21 AC 88 ms
101,944 KB
testcase_22 AC 88 ms
102,064 KB
testcase_23 AC 88 ms
102,128 KB
testcase_24 AC 86 ms
102,140 KB
testcase_25 AC 73 ms
88,484 KB
testcase_26 AC 89 ms
101,848 KB
testcase_27 AC 80 ms
95,132 KB
testcase_28 AC 87 ms
102,236 KB
testcase_29 AC 84 ms
104,240 KB
testcase_30 AC 89 ms
102,216 KB
testcase_31 AC 88 ms
102,104 KB
testcase_32 AC 89 ms
102,080 KB
testcase_33 AC 84 ms
101,772 KB
testcase_34 AC 87 ms
102,020 KB
testcase_35 AC 116 ms
77,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")
#######################################################################
for _ in range(ni()):
    n = ni()
    a = na()
    ans = 0
    for i in range(n-1):
        ans = max(ans,a[i]-a[i+1]+1)
    print(ans)
0