結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,352 KB
testcase_01 WA -
testcase_02 AC 87 ms
75,792 KB
testcase_03 AC 89 ms
76,100 KB
testcase_04 AC 88 ms
95,628 KB
testcase_05 AC 94 ms
104,116 KB
testcase_06 AC 86 ms
90,852 KB
testcase_07 AC 94 ms
103,884 KB
testcase_08 AC 87 ms
91,504 KB
testcase_09 AC 94 ms
107,260 KB
testcase_10 AC 94 ms
104,016 KB
testcase_11 AC 93 ms
96,548 KB
testcase_12 AC 96 ms
96,768 KB
testcase_13 WA -
testcase_14 AC 95 ms
101,460 KB
testcase_15 AC 97 ms
101,928 KB
testcase_16 AC 98 ms
101,532 KB
testcase_17 AC 99 ms
102,120 KB
testcase_18 AC 98 ms
101,996 KB
testcase_19 AC 97 ms
102,136 KB
testcase_20 AC 100 ms
101,536 KB
testcase_21 AC 97 ms
102,016 KB
testcase_22 AC 96 ms
101,644 KB
testcase_23 AC 98 ms
101,780 KB
testcase_24 AC 98 ms
102,080 KB
testcase_25 WA -
testcase_26 AC 98 ms
102,132 KB
testcase_27 AC 92 ms
95,400 KB
testcase_28 AC 100 ms
101,516 KB
testcase_29 AC 94 ms
103,752 KB
testcase_30 AC 99 ms
102,132 KB
testcase_31 AC 100 ms
102,064 KB
testcase_32 AC 98 ms
101,896 KB
testcase_33 AC 91 ms
106,940 KB
testcase_34 AC 98 ms
102,080 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = m+1
    if k >= 0:
        print(k)
    else:
        print(-1)
0