結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー yupoohyupooh
提出日時 2024-02-23 21:30:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 105,700 KB
最終ジャッジ日時 2024-09-29 05:35:07
合計ジャッジ時間 5,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,080 KB
testcase_01 AC 193 ms
76,756 KB
testcase_02 AC 86 ms
76,152 KB
testcase_03 AC 89 ms
76,464 KB
testcase_04 AC 93 ms
97,272 KB
testcase_05 AC 98 ms
102,836 KB
testcase_06 AC 89 ms
90,276 KB
testcase_07 AC 95 ms
101,924 KB
testcase_08 AC 86 ms
90,332 KB
testcase_09 AC 101 ms
105,700 KB
testcase_10 AC 98 ms
102,776 KB
testcase_11 AC 90 ms
95,704 KB
testcase_12 AC 97 ms
96,488 KB
testcase_13 AC 92 ms
102,472 KB
testcase_14 AC 99 ms
100,292 KB
testcase_15 AC 100 ms
99,892 KB
testcase_16 AC 105 ms
100,112 KB
testcase_17 AC 104 ms
99,612 KB
testcase_18 AC 105 ms
99,560 KB
testcase_19 AC 101 ms
99,588 KB
testcase_20 AC 99 ms
99,728 KB
testcase_21 AC 105 ms
99,472 KB
testcase_22 AC 104 ms
99,988 KB
testcase_23 AC 97 ms
99,928 KB
testcase_24 AC 83 ms
100,172 KB
testcase_25 AC 71 ms
86,752 KB
testcase_26 AC 109 ms
99,744 KB
testcase_27 AC 105 ms
95,892 KB
testcase_28 AC 111 ms
99,632 KB
testcase_29 AC 107 ms
102,236 KB
testcase_30 AC 108 ms
100,192 KB
testcase_31 AC 111 ms
99,616 KB
testcase_32 AC 108 ms
99,628 KB
testcase_33 AC 107 ms
99,964 KB
testcase_34 AC 109 ms
99,936 KB
testcase_35 AC 133 ms
76,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
t=int(input())
for _ in range(t):
  n=int(input())
  a=list(map(int,input().split()))
  flg=True
  for i in range(n-1):
    if a[i]>=a[i+1]:
      flg=False
      break
  if flg:
    print(0)
    continue
  ok=10**9+10
  ng=0
  while ok-ng>1:
    mid=(ok+ng)//2
    flg=True
    for i in range(n-1):
      if a[i]+mid*(i+1)>=a[i+1]+mid*(i+2):
        flg=False
        break
    if flg:
      ok=mid
    else:
      ng=mid
  print(ok)
0