結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー tipstar0125tipstar0125
提出日時 2024-02-23 21:50:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 995 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 295,592 KB
最終ジャッジ日時 2024-09-29 06:16:43
合計ジャッジ時間 32,358 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 367 ms
76,916 KB
testcase_02 AC 419 ms
78,808 KB
testcase_03 AC 415 ms
78,208 KB
testcase_04 AC 775 ms
261,436 KB
testcase_05 AC 906 ms
291,860 KB
testcase_06 AC 756 ms
228,400 KB
testcase_07 AC 894 ms
293,772 KB
testcase_08 AC 780 ms
214,600 KB
testcase_09 AC 936 ms
283,660 KB
testcase_10 AC 900 ms
285,444 KB
testcase_11 AC 760 ms
258,532 KB
testcase_12 AC 905 ms
295,592 KB
testcase_13 AC 872 ms
289,280 KB
testcase_14 AC 920 ms
283,020 KB
testcase_15 AC 896 ms
283,340 KB
testcase_16 AC 915 ms
283,348 KB
testcase_17 AC 923 ms
283,228 KB
testcase_18 AC 905 ms
283,320 KB
testcase_19 AC 910 ms
283,340 KB
testcase_20 AC 891 ms
283,212 KB
testcase_21 AC 895 ms
282,940 KB
testcase_22 AC 915 ms
283,228 KB
testcase_23 AC 884 ms
283,404 KB
testcase_24 AC 995 ms
282,956 KB
testcase_25 AC 686 ms
194,888 KB
testcase_26 AC 924 ms
282,432 KB
testcase_27 AC 910 ms
292,132 KB
testcase_28 AC 991 ms
282,328 KB
testcase_29 AC 935 ms
293,608 KB
testcase_30 AC 953 ms
282,256 KB
testcase_31 AC 960 ms
282,208 KB
testcase_32 AC 947 ms
282,340 KB
testcase_33 AC 956 ms
281,300 KB
testcase_34 AC 946 ms
282,084 KB
testcase_35 AC 979 ms
78,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
    N=int(input())
    A=list(map(int,input().split()))
    ng=-1
    ok=int(1e18)
    
    def f(x):
        B=[A[0]+x]
        for i in range(1,N):
            b=A[i]+(i+1)*x
            if B[-1]>=b:return False
            B.append(b)
        return True

    while ok-ng>1:
        m=(ok+ng)//2
        if f(m):ok=m
        else:ng=m
    print(ok)
0