結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー noriocnorioc
提出日時 2024-06-10 20:37:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 107,444 KB
最終ジャッジ日時 2024-06-10 20:38:05
合計ジャッジ時間 6,875 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,488 KB
testcase_01 AC 183 ms
77,516 KB
testcase_02 AC 75 ms
75,808 KB
testcase_03 AC 76 ms
75,500 KB
testcase_04 AC 82 ms
98,440 KB
testcase_05 AC 95 ms
104,104 KB
testcase_06 AC 74 ms
91,344 KB
testcase_07 AC 82 ms
103,352 KB
testcase_08 AC 73 ms
90,080 KB
testcase_09 AC 83 ms
107,328 KB
testcase_10 AC 83 ms
104,208 KB
testcase_11 AC 81 ms
95,828 KB
testcase_12 AC 81 ms
95,788 KB
testcase_13 AC 85 ms
103,712 KB
testcase_14 AC 87 ms
101,972 KB
testcase_15 AC 84 ms
101,924 KB
testcase_16 AC 86 ms
101,780 KB
testcase_17 AC 85 ms
101,988 KB
testcase_18 AC 103 ms
101,788 KB
testcase_19 AC 86 ms
101,960 KB
testcase_20 AC 87 ms
101,908 KB
testcase_21 AC 88 ms
101,756 KB
testcase_22 AC 87 ms
102,212 KB
testcase_23 AC 89 ms
102,052 KB
testcase_24 AC 85 ms
101,696 KB
testcase_25 AC 74 ms
88,528 KB
testcase_26 AC 84 ms
101,796 KB
testcase_27 AC 76 ms
95,736 KB
testcase_28 AC 86 ms
102,056 KB
testcase_29 AC 81 ms
103,920 KB
testcase_30 AC 84 ms
102,040 KB
testcase_31 AC 102 ms
101,832 KB
testcase_32 AC 83 ms
101,996 KB
testcase_33 AC 77 ms
107,444 KB
testcase_34 AC 85 ms
102,172 KB
testcase_35 AC 329 ms
77,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N = int(input())
    A = list(map(int, input().split()))

    tmax = 0
    for i in range(N-1):
        a = A[i]
        b = A[i+1]
        if a < b: continue

        # a が b を追い越すまでの時間(笛の回数)
        t = (a - b) + 1 # 速度差は 1 のため、1 で割るのは省略
        tmax = max(tmax, t)

    print(tmax)


T = int(input())
for _ in range(T):
    solve()
0