結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー titiatitia
提出日時 2024-02-23 21:28:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,900 KB
最終ジャッジ日時 2024-09-29 05:31:27
合計ジャッジ時間 8,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 200 ms
10,752 KB
testcase_02 AC 169 ms
10,880 KB
testcase_03 AC 170 ms
10,880 KB
testcase_04 AC 187 ms
23,996 KB
testcase_05 AC 188 ms
30,836 KB
testcase_06 AC 180 ms
21,092 KB
testcase_07 AC 185 ms
29,332 KB
testcase_08 AC 182 ms
20,220 KB
testcase_09 AC 193 ms
31,912 KB
testcase_10 AC 193 ms
31,060 KB
testcase_11 AC 189 ms
23,992 KB
testcase_12 AC 186 ms
28,544 KB
testcase_13 AC 189 ms
29,296 KB
testcase_14 AC 191 ms
32,504 KB
testcase_15 AC 197 ms
32,500 KB
testcase_16 AC 193 ms
32,500 KB
testcase_17 AC 200 ms
32,420 KB
testcase_18 AC 191 ms
32,500 KB
testcase_19 AC 195 ms
32,424 KB
testcase_20 AC 192 ms
32,500 KB
testcase_21 AC 194 ms
32,504 KB
testcase_22 AC 193 ms
32,548 KB
testcase_23 AC 189 ms
32,500 KB
testcase_24 AC 137 ms
32,504 KB
testcase_25 AC 124 ms
17,880 KB
testcase_26 AC 137 ms
32,628 KB
testcase_27 AC 138 ms
29,624 KB
testcase_28 AC 226 ms
32,660 KB
testcase_29 AC 228 ms
29,564 KB
testcase_30 AC 249 ms
32,544 KB
testcase_31 AC 244 ms
32,660 KB
testcase_32 AC 250 ms
32,536 KB
testcase_33 AC 239 ms
32,900 KB
testcase_34 AC 241 ms
32,532 KB
testcase_35 AC 358 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T=int(input())
for tests in range(T):
    N=int(input())
    A=list(map(int,input().split()))

    ANS=0

    for i in range(1,N):
        if A[i]-A[i-1]<=0:
            ANS=max(ANS,A[i-1]-A[i]+1)

    print(ANS)
0