結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー playerplayer
提出日時 2024-02-25 00:45:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 130,728 KB
最終ジャッジ日時 2024-09-29 10:29:31
合計ジャッジ時間 6,983 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,120 KB
testcase_01 AC 151 ms
77,312 KB
testcase_02 AC 102 ms
76,800 KB
testcase_03 AC 103 ms
76,876 KB
testcase_04 AC 126 ms
115,072 KB
testcase_05 AC 136 ms
124,844 KB
testcase_06 AC 122 ms
118,152 KB
testcase_07 AC 134 ms
104,944 KB
testcase_08 AC 129 ms
115,616 KB
testcase_09 AC 140 ms
130,300 KB
testcase_10 AC 138 ms
126,560 KB
testcase_11 AC 128 ms
124,856 KB
testcase_12 AC 127 ms
125,188 KB
testcase_13 AC 129 ms
108,584 KB
testcase_14 AC 137 ms
130,560 KB
testcase_15 AC 138 ms
130,352 KB
testcase_16 AC 136 ms
130,344 KB
testcase_17 AC 137 ms
130,188 KB
testcase_18 AC 137 ms
130,668 KB
testcase_19 AC 138 ms
130,220 KB
testcase_20 AC 135 ms
130,628 KB
testcase_21 AC 136 ms
130,728 KB
testcase_22 AC 138 ms
130,220 KB
testcase_23 AC 137 ms
130,476 KB
testcase_24 AC 139 ms
130,728 KB
testcase_25 AC 122 ms
101,880 KB
testcase_26 AC 136 ms
130,624 KB
testcase_27 AC 143 ms
122,436 KB
testcase_28 AC 135 ms
130,448 KB
testcase_29 AC 126 ms
104,756 KB
testcase_30 AC 137 ms
130,436 KB
testcase_31 AC 148 ms
130,232 KB
testcase_32 AC 135 ms
130,316 KB
testcase_33 AC 139 ms
130,428 KB
testcase_34 AC 133 ms
130,456 KB
testcase_35 AC 364 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

t = int(input())

for _ in range(t):
    n = int(input())
    a = list(map(int, input().split()))
    d = defaultdict(int)
    for i in range(n):
        d[i] = a[i] # 初期座標
    ans = 0
    for i in range(n-1):
        if d[i] < d[i+1]:
            continue
        num = d[i] - d[i+1] + 1
        ans = max(ans,num)
    print(ans)   
0