結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー NakLon131NakLon131
提出日時 2024-02-23 22:29:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 683 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 259,060 KB
最終ジャッジ日時 2024-09-29 07:26:54
合計ジャッジ時間 12,888 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,824 KB
testcase_01 AC 275 ms
77,056 KB
testcase_02 AC 169 ms
76,796 KB
testcase_03 AC 167 ms
77,072 KB
testcase_04 AC 339 ms
244,616 KB
testcase_05 AC 294 ms
258,652 KB
testcase_06 AC 244 ms
161,824 KB
testcase_07 AC 302 ms
258,324 KB
testcase_08 AC 233 ms
162,604 KB
testcase_09 AC 299 ms
259,060 KB
testcase_10 AC 294 ms
258,140 KB
testcase_11 AC 291 ms
209,436 KB
testcase_12 AC 352 ms
256,652 KB
testcase_13 AC 299 ms
257,796 KB
testcase_14 AC 288 ms
258,376 KB
testcase_15 AC 296 ms
258,504 KB
testcase_16 AC 300 ms
258,944 KB
testcase_17 AC 294 ms
258,972 KB
testcase_18 AC 292 ms
258,456 KB
testcase_19 AC 295 ms
258,320 KB
testcase_20 AC 293 ms
258,684 KB
testcase_21 AC 299 ms
258,376 KB
testcase_22 AC 298 ms
258,508 KB
testcase_23 AC 289 ms
258,812 KB
testcase_24 AC 299 ms
258,888 KB
testcase_25 AC 272 ms
158,716 KB
testcase_26 AC 300 ms
258,628 KB
testcase_27 AC 336 ms
257,680 KB
testcase_28 AC 294 ms
258,528 KB
testcase_29 AC 306 ms
258,168 KB
testcase_30 AC 303 ms
258,644 KB
testcase_31 AC 297 ms
258,868 KB
testcase_32 AC 295 ms
258,600 KB
testcase_33 AC 303 ms
258,384 KB
testcase_34 AC 294 ms
258,392 KB
testcase_35 AC 683 ms
77,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def isok(x, a) -> bool:
    aa = []
    for i in range(len(a)):
        aa.append(a[i] + x * (i+1)) 
    
    for i in range(1, len(aa)):
        if aa[i-1] >= aa[i]:
            return False
    return True   

t = int(input())
for i in range(t):
    n = int(input())
    a = list(map(int, input().split()))
    
    ng = -1
    ok = 1 << 30
    for _ in range(30):
        md = (ng + ok) // 2
        if isok(md, a):
            ok = md
        else:
            ng = md
    print(ok)
    

0