結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー detteiuudetteiuu
提出日時 2024-08-17 13:38:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 662 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 163,440 KB
最終ジャッジ日時 2024-08-17 13:38:32
合計ジャッジ時間 10,155 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 249 ms
76,800 KB
testcase_02 AC 138 ms
76,928 KB
testcase_03 AC 139 ms
76,544 KB
testcase_04 AC 162 ms
135,936 KB
testcase_05 AC 163 ms
138,016 KB
testcase_06 AC 150 ms
127,872 KB
testcase_07 AC 182 ms
133,068 KB
testcase_08 AC 145 ms
128,332 KB
testcase_09 AC 167 ms
141,120 KB
testcase_10 AC 171 ms
138,464 KB
testcase_11 AC 161 ms
154,880 KB
testcase_12 AC 164 ms
153,324 KB
testcase_13 AC 163 ms
150,912 KB
testcase_14 AC 190 ms
161,260 KB
testcase_15 AC 168 ms
162,928 KB
testcase_16 AC 172 ms
162,672 KB
testcase_17 AC 170 ms
162,676 KB
testcase_18 AC 177 ms
162,904 KB
testcase_19 AC 173 ms
163,440 KB
testcase_20 AC 173 ms
162,548 KB
testcase_21 AC 202 ms
162,640 KB
testcase_22 AC 173 ms
162,760 KB
testcase_23 AC 167 ms
162,932 KB
testcase_24 AC 171 ms
161,268 KB
testcase_25 AC 151 ms
114,944 KB
testcase_26 AC 171 ms
163,148 KB
testcase_27 AC 176 ms
141,576 KB
testcase_28 AC 178 ms
162,696 KB
testcase_29 AC 165 ms
133,060 KB
testcase_30 AC 173 ms
162,564 KB
testcase_31 AC 183 ms
162,580 KB
testcase_32 AC 177 ms
162,956 KB
testcase_33 AC 176 ms
162,820 KB
testcase_34 AC 200 ms
162,824 KB
testcase_35 AC 662 ms
77,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

def func(a, n):
    for i in range(len(a)):
        a[i] += (i+1)*n
    for i in range(N-1):
        if a[i] >= a[i+1]:
            return False
    else:
        return True

for _ in range(T):
    N = int(input())
    A = list(map(int, input().split()))
    a = A[:]
    for i in range(N):
        a[i] += (i+1)*10**12
    for i in range(N-1):
        if a[i] >= a[i+1]:
            print(-1)
            break
    else:
        left = -1
        right = 10**12
        while left+1 < right:
            mid = (left+right)//2
            if not func(A[:], mid):
                left = mid
            else:
                right = mid
        print(right)
0