結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー hato336hato336
提出日時 2024-02-23 21:28:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 662 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 185,828 KB
最終ジャッジ日時 2024-09-29 05:31:44
合計ジャッジ時間 11,737 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
85,812 KB
testcase_01 AC 345 ms
90,820 KB
testcase_02 AC 221 ms
90,420 KB
testcase_03 AC 231 ms
90,256 KB
testcase_04 AC 268 ms
163,828 KB
testcase_05 AC 270 ms
176,728 KB
testcase_06 AC 252 ms
146,180 KB
testcase_07 AC 264 ms
171,744 KB
testcase_08 AC 253 ms
140,532 KB
testcase_09 AC 271 ms
182,604 KB
testcase_10 AC 275 ms
176,628 KB
testcase_11 AC 253 ms
168,380 KB
testcase_12 AC 268 ms
170,604 KB
testcase_13 AC 263 ms
173,512 KB
testcase_14 AC 263 ms
185,344 KB
testcase_15 AC 261 ms
185,556 KB
testcase_16 AC 265 ms
185,720 KB
testcase_17 AC 260 ms
185,532 KB
testcase_18 AC 263 ms
185,108 KB
testcase_19 AC 270 ms
185,160 KB
testcase_20 AC 263 ms
185,524 KB
testcase_21 AC 265 ms
185,228 KB
testcase_22 AC 266 ms
185,736 KB
testcase_23 AC 268 ms
185,228 KB
testcase_24 AC 261 ms
185,712 KB
testcase_25 AC 259 ms
135,708 KB
testcase_26 AC 267 ms
185,828 KB
testcase_27 AC 277 ms
162,700 KB
testcase_28 AC 270 ms
185,656 KB
testcase_29 AC 277 ms
171,576 KB
testcase_30 AC 285 ms
185,292 KB
testcase_31 AC 278 ms
185,716 KB
testcase_32 AC 293 ms
185,416 KB
testcase_33 AC 281 ms
185,176 KB
testcase_34 AC 284 ms
185,552 KB
testcase_35 AC 662 ms
97,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
input = sys.stdin.readline
t = int(input())
#alist = list(map(int,input().split()))
#alist = []
#s = input()
#n,m = map(int,input().split())
#for i in range(n):
#    alist.append(list(map(int,input().split())))
for i in range(t):
    n = int(input())
    a = list(map(int,input().split()))
    l,r = 0,10**10
    for j in range(42):
        m = (l+r)//2
        b = [a[k] + (k+1)*m for k in range(n)]
        cnt = 0
        for k in range(n-1):
            if b[k] < b[k+1]:
                cnt += 1
        if cnt == n-1:
            r = m
        else:
            l = m
    print(r)
0