結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー ゼットゼット
提出日時 2024-02-23 21:28:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 107,504 KB
最終ジャッジ日時 2024-09-29 05:30:16
合計ジャッジ時間 5,637 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,216 KB
testcase_01 AC 151 ms
77,092 KB
testcase_02 AC 93 ms
76,484 KB
testcase_03 AC 100 ms
76,588 KB
testcase_04 AC 95 ms
97,644 KB
testcase_05 AC 95 ms
104,180 KB
testcase_06 AC 92 ms
92,076 KB
testcase_07 AC 97 ms
104,876 KB
testcase_08 AC 90 ms
93,144 KB
testcase_09 AC 98 ms
107,504 KB
testcase_10 AC 98 ms
104,084 KB
testcase_11 AC 98 ms
99,628 KB
testcase_12 AC 101 ms
98,936 KB
testcase_13 AC 97 ms
105,244 KB
testcase_14 AC 96 ms
102,168 KB
testcase_15 AC 105 ms
101,976 KB
testcase_16 AC 96 ms
101,976 KB
testcase_17 AC 97 ms
101,864 KB
testcase_18 AC 96 ms
102,140 KB
testcase_19 AC 98 ms
102,088 KB
testcase_20 AC 98 ms
102,420 KB
testcase_21 AC 99 ms
101,976 KB
testcase_22 AC 96 ms
101,844 KB
testcase_23 AC 104 ms
102,284 KB
testcase_24 AC 96 ms
102,104 KB
testcase_25 AC 87 ms
88,376 KB
testcase_26 AC 101 ms
102,112 KB
testcase_27 AC 93 ms
96,968 KB
testcase_28 AC 97 ms
101,972 KB
testcase_29 AC 96 ms
105,508 KB
testcase_30 AC 98 ms
101,948 KB
testcase_31 AC 99 ms
102,276 KB
testcase_32 AC 98 ms
102,324 KB
testcase_33 AC 88 ms
107,356 KB
testcase_34 AC 97 ms
102,228 KB
testcase_35 AC 346 ms
77,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
for _ in range(Q):
  N=int(input())
  A=list(map(int,input().split()))
  l=0
  for i in range(1,N):
    y=A[i-1]-A[i]+1
    if y>0:
      l=max(l,y)
  B=[0]*N
  for i in range(N):
    B[i]=A[i]+l*(i+1)
  ans=True
  for i in range(1,N):
    if B[i]<=B[i-1]:
      ans=False
      break
  if ans==True:
    print(l)
  else:
    print(-1)
0