結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー Akijin_007Akijin_007
提出日時 2024-02-23 21:36:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 986 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 624 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 354,536 KB
最終ジャッジ日時 2024-10-07 14:48:07
合計ジャッジ時間 30,981 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,784 KB
testcase_01 AC 284 ms
78,412 KB
testcase_02 AC 348 ms
77,276 KB
testcase_03 AC 490 ms
77,460 KB
testcase_04 AC 720 ms
245,568 KB
testcase_05 AC 913 ms
348,940 KB
testcase_06 AC 752 ms
210,464 KB
testcase_07 AC 864 ms
330,136 KB
testcase_08 AC 709 ms
190,764 KB
testcase_09 AC 880 ms
348,760 KB
testcase_10 AC 870 ms
337,824 KB
testcase_11 AC 758 ms
246,500 KB
testcase_12 AC 874 ms
294,760 KB
testcase_13 AC 808 ms
332,220 KB
testcase_14 AC 815 ms
308,976 KB
testcase_15 AC 808 ms
309,060 KB
testcase_16 AC 799 ms
309,056 KB
testcase_17 AC 835 ms
309,192 KB
testcase_18 AC 807 ms
309,104 KB
testcase_19 AC 803 ms
308,972 KB
testcase_20 AC 809 ms
309,104 KB
testcase_21 AC 811 ms
308,972 KB
testcase_22 AC 811 ms
309,220 KB
testcase_23 AC 787 ms
308,848 KB
testcase_24 AC 923 ms
353,000 KB
testcase_25 AC 640 ms
169,920 KB
testcase_26 AC 808 ms
313,712 KB
testcase_27 AC 802 ms
291,564 KB
testcase_28 AC 986 ms
354,536 KB
testcase_29 AC 897 ms
329,556 KB
testcase_30 AC 926 ms
348,068 KB
testcase_31 AC 978 ms
347,808 KB
testcase_32 AC 951 ms
344,996 KB
testcase_33 AC 933 ms
353,796 KB
testcase_34 AC 920 ms
340,388 KB
testcase_35 AC 385 ms
83,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

T = int(input())

a = []
for i in range(T):
    N = int(input())
    A = list(map(int, input().split()))

    max1 = 10 ** 18
    min1 = -1
    while max1 - min1 > 1:
        h = (max1 + min1) // 2
        u = [0] * N
        for j in range(N):
            u[j] = A[j] + j * h
        f = 1
        for j in range(N-1):
            if u[j] >= u[j+1]:
                f = 0
                break

        if f:
            max1 = h
        else:
            min1 = h

    a.append(max1)


for x in a:
    print(x)


0