結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー 寝癖寝癖
提出日時 2024-02-23 21:28:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 243 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 107,556 KB
最終ジャッジ日時 2024-09-29 05:31:04
合計ジャッジ時間 4,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,192 KB
testcase_01 WA -
testcase_02 AC 81 ms
76,432 KB
testcase_03 AC 78 ms
76,472 KB
testcase_04 AC 82 ms
99,012 KB
testcase_05 AC 82 ms
104,468 KB
testcase_06 AC 75 ms
91,436 KB
testcase_07 AC 82 ms
103,916 KB
testcase_08 AC 74 ms
90,992 KB
testcase_09 AC 80 ms
107,556 KB
testcase_10 AC 80 ms
104,348 KB
testcase_11 AC 79 ms
96,276 KB
testcase_12 AC 83 ms
97,160 KB
testcase_13 WA -
testcase_14 AC 85 ms
101,708 KB
testcase_15 AC 87 ms
101,600 KB
testcase_16 AC 86 ms
101,844 KB
testcase_17 AC 87 ms
102,228 KB
testcase_18 AC 86 ms
101,412 KB
testcase_19 AC 84 ms
102,272 KB
testcase_20 AC 86 ms
102,060 KB
testcase_21 AC 85 ms
101,548 KB
testcase_22 AC 88 ms
102,008 KB
testcase_23 AC 86 ms
101,744 KB
testcase_24 AC 85 ms
101,480 KB
testcase_25 WA -
testcase_26 AC 86 ms
101,868 KB
testcase_27 AC 80 ms
95,392 KB
testcase_28 AC 86 ms
102,184 KB
testcase_29 AC 79 ms
103,608 KB
testcase_30 AC 84 ms
102,320 KB
testcase_31 AC 84 ms
102,140 KB
testcase_32 AC 84 ms
101,872 KB
testcase_33 AC 78 ms
106,796 KB
testcase_34 AC 84 ms
101,896 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    k = -float('inf')
    for i in range(N-1):
        k = max(k, A[i]-A[i+1]+1)
    
    if k >= 0:
        print(k)
    else:
        print(-1)
0