結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー 寝癖寝癖
提出日時 2024-02-23 21:35:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 387 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 107,292 KB
最終ジャッジ日時 2024-09-29 05:46:22
合計ジャッジ時間 5,614 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,456 KB
testcase_01 AC 186 ms
77,492 KB
testcase_02 AC 86 ms
75,452 KB
testcase_03 AC 92 ms
75,572 KB
testcase_04 AC 90 ms
96,500 KB
testcase_05 AC 94 ms
104,304 KB
testcase_06 AC 86 ms
91,272 KB
testcase_07 AC 94 ms
103,916 KB
testcase_08 AC 87 ms
91,620 KB
testcase_09 AC 96 ms
107,292 KB
testcase_10 AC 94 ms
104,216 KB
testcase_11 AC 92 ms
96,692 KB
testcase_12 AC 98 ms
96,912 KB
testcase_13 AC 93 ms
103,832 KB
testcase_14 AC 96 ms
101,980 KB
testcase_15 AC 100 ms
102,136 KB
testcase_16 AC 97 ms
102,344 KB
testcase_17 AC 99 ms
102,100 KB
testcase_18 AC 99 ms
101,960 KB
testcase_19 AC 97 ms
101,728 KB
testcase_20 AC 97 ms
102,168 KB
testcase_21 AC 97 ms
101,932 KB
testcase_22 AC 97 ms
101,876 KB
testcase_23 AC 98 ms
101,852 KB
testcase_24 AC 97 ms
102,024 KB
testcase_25 AC 87 ms
87,488 KB
testcase_26 AC 97 ms
102,148 KB
testcase_27 AC 93 ms
95,420 KB
testcase_28 AC 98 ms
102,056 KB
testcase_29 AC 93 ms
104,060 KB
testcase_30 AC 99 ms
101,988 KB
testcase_31 AC 96 ms
102,004 KB
testcase_32 AC 96 ms
102,092 KB
testcase_33 AC 92 ms
107,292 KB
testcase_34 AC 99 ms
102,160 KB
testcase_35 AC 387 ms
77,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    m = max(A[i] - A[i+1] for i in range(N-1))
    k = max(0, m+1)
    print(k)
0