結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-02-23 21:30:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 850 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 127,028 KB
最終ジャッジ日時 2024-09-29 05:36:59
合計ジャッジ時間 7,843 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,628 KB
testcase_01 AC 287 ms
76,872 KB
testcase_02 AC 143 ms
76,704 KB
testcase_03 AC 157 ms
77,368 KB
testcase_04 AC 142 ms
104,608 KB
testcase_05 AC 147 ms
105,440 KB
testcase_06 AC 143 ms
100,908 KB
testcase_07 AC 143 ms
110,764 KB
testcase_08 AC 136 ms
102,628 KB
testcase_09 AC 156 ms
107,432 KB
testcase_10 AC 150 ms
105,456 KB
testcase_11 AC 143 ms
101,628 KB
testcase_12 AC 157 ms
117,260 KB
testcase_13 AC 151 ms
113,108 KB
testcase_14 AC 149 ms
125,512 KB
testcase_15 AC 148 ms
123,696 KB
testcase_16 AC 156 ms
120,880 KB
testcase_17 AC 164 ms
120,956 KB
testcase_18 AC 155 ms
119,600 KB
testcase_19 AC 152 ms
122,440 KB
testcase_20 AC 150 ms
125,636 KB
testcase_21 AC 157 ms
122,436 KB
testcase_22 AC 160 ms
124,104 KB
testcase_23 AC 151 ms
127,028 KB
testcase_24 AC 168 ms
110,132 KB
testcase_25 AC 165 ms
94,604 KB
testcase_26 AC 168 ms
110,128 KB
testcase_27 AC 164 ms
109,988 KB
testcase_28 AC 171 ms
109,916 KB
testcase_29 AC 165 ms
105,552 KB
testcase_30 AC 170 ms
109,792 KB
testcase_31 AC 164 ms
109,888 KB
testcase_32 AC 161 ms
109,760 KB
testcase_33 AC 155 ms
107,176 KB
testcase_34 AC 161 ms
109,844 KB
testcase_35 AC 850 ms
78,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
for _ in range(t):
  n=int(input())
  a=list(map(int,input().split()))
  ok=10**9
  ng=-1
  while ok-ng>1:
    m=(ok+ng)//2
    b=[a[i]+(i+1)*m for i in range(n)]
    if all(b[i]<b[i+1] for i in range(n-1)):
      ok=m
    else:
      ng=m
  print(ok)
0