結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 254 ms
11,776 KB
testcase_02 AC 165 ms
11,008 KB
testcase_03 AC 166 ms
11,008 KB
testcase_04 AC 181 ms
23,996 KB
testcase_05 AC 186 ms
30,972 KB
testcase_06 AC 186 ms
19,004 KB
testcase_07 AC 184 ms
29,468 KB
testcase_08 AC 183 ms
18,976 KB
testcase_09 AC 189 ms
32,048 KB
testcase_10 AC 185 ms
31,060 KB
testcase_11 AC 182 ms
22,872 KB
testcase_12 AC 183 ms
27,836 KB
testcase_13 AC 182 ms
29,416 KB
testcase_14 AC 189 ms
32,644 KB
testcase_15 AC 187 ms
32,644 KB
testcase_16 AC 187 ms
32,644 KB
testcase_17 AC 192 ms
32,524 KB
testcase_18 AC 191 ms
32,648 KB
testcase_19 AC 190 ms
32,628 KB
testcase_20 AC 191 ms
32,652 KB
testcase_21 AC 190 ms
32,468 KB
testcase_22 AC 191 ms
32,524 KB
testcase_23 AC 191 ms
32,648 KB
testcase_24 AC 187 ms
32,652 KB
testcase_25 AC 178 ms
17,888 KB
testcase_26 AC 187 ms
32,568 KB
testcase_27 AC 185 ms
26,448 KB
testcase_28 AC 176 ms
32,680 KB
testcase_29 AC 176 ms
29,568 KB
testcase_30 AC 187 ms
32,684 KB
testcase_31 AC 179 ms
32,552 KB
testcase_32 AC 187 ms
32,676 KB
testcase_33 AC 187 ms
32,780 KB
testcase_34 AC 187 ms
32,680 KB
testcase_35 AC 628 ms
13,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n,A):
    assert(len(A)==n)
    ans=0
    for i in range(1,n):
        ans=max(ans,A[i-1]-A[i]+1)
    return ans

print(*[solve(int(input()),[int(a) for a in input().split()]) for i in range(int(input()))],sep='\n')
0