結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー moon17moon17
提出日時 2024-02-23 23:41:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 624 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 123,588 KB
最終ジャッジ日時 2024-09-29 09:09:12
合計ジャッジ時間 7,564 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 206 ms
77,864 KB
testcase_02 AC 129 ms
77,020 KB
testcase_03 AC 132 ms
77,056 KB
testcase_04 AC 148 ms
99,884 KB
testcase_05 AC 157 ms
115,516 KB
testcase_06 AC 145 ms
110,812 KB
testcase_07 AC 162 ms
118,692 KB
testcase_08 AC 140 ms
109,048 KB
testcase_09 AC 163 ms
119,944 KB
testcase_10 AC 157 ms
117,628 KB
testcase_11 AC 144 ms
114,560 KB
testcase_12 AC 159 ms
123,588 KB
testcase_13 AC 161 ms
118,512 KB
testcase_14 AC 157 ms
120,584 KB
testcase_15 AC 157 ms
120,060 KB
testcase_16 AC 157 ms
119,980 KB
testcase_17 AC 157 ms
119,852 KB
testcase_18 AC 156 ms
119,976 KB
testcase_19 AC 154 ms
120,232 KB
testcase_20 AC 158 ms
120,180 KB
testcase_21 AC 155 ms
120,232 KB
testcase_22 AC 158 ms
119,856 KB
testcase_23 AC 157 ms
119,972 KB
testcase_24 AC 109 ms
103,980 KB
testcase_25 AC 93 ms
89,768 KB
testcase_26 AC 110 ms
103,816 KB
testcase_27 AC 104 ms
102,848 KB
testcase_28 AC 113 ms
103,904 KB
testcase_29 AC 112 ms
100,800 KB
testcase_30 AC 112 ms
103,564 KB
testcase_31 AC 111 ms
103,792 KB
testcase_32 AC 112 ms
103,972 KB
testcase_33 AC 113 ms
103,704 KB
testcase_34 AC 112 ms
103,912 KB
testcase_35 AC 400 ms
77,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import*
for _ in range(int(input())):
  n=int(input())
  *a,=map(int,input().split())
  d=defaultdict(int)
  for i in range(n-1):
    j=i+1
    ni,nj=i+1,j+1
    if a[i]<a[j]:
      d[0]+=1
      continue
#    a[i]+ni*m<a[j]+nj*m
#    a[i]-a[j]<m*(nj-ni)
    m=(a[i]-a[j])//(nj-ni)+1
    d[m]+=1
#  print(d)
  s=0
  ans=-1
  for k in sorted(d):
    s+=d[k]
    if s>=n-1:
      ans=k
      break
  print(ans)
0