結果

問題 No.2217 Suffix+
ユーザー とりゐとりゐ
提出日時 2023-02-17 21:24:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-07-19 12:24:54
合計ジャッジ時間 4,630 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 37 ms
51,456 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 36 ms
51,712 KB
testcase_12 AC 35 ms
51,712 KB
testcase_13 AC 36 ms
51,968 KB
testcase_14 AC 55 ms
65,664 KB
testcase_15 AC 58 ms
66,432 KB
testcase_16 AC 64 ms
72,448 KB
testcase_17 AC 62 ms
69,504 KB
testcase_18 AC 59 ms
67,968 KB
testcase_19 AC 121 ms
80,768 KB
testcase_20 AC 118 ms
78,720 KB
testcase_21 AC 59 ms
63,488 KB
testcase_22 AC 120 ms
80,896 KB
testcase_23 AC 107 ms
75,520 KB
testcase_24 AC 86 ms
86,784 KB
testcase_25 AC 82 ms
86,912 KB
testcase_26 AC 84 ms
87,040 KB
testcase_27 AC 86 ms
86,912 KB
testcase_28 AC 93 ms
87,680 KB
testcase_29 AC 165 ms
91,776 KB
testcase_30 AC 161 ms
91,520 KB
testcase_31 AC 165 ms
91,776 KB
testcase_32 AC 176 ms
91,392 KB
testcase_33 AC 173 ms
91,520 KB
testcase_34 AC 91 ms
86,912 KB
testcase_35 AC 41 ms
51,968 KB
testcase_36 AC 213 ms
91,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

n,k=map(int,input().split())
a=list(map(int,input().split()))

def calc(mid):
  c=0
  num=0
  for i in range(n):
    if a[i]+num<mid:
      use=(mid-a[i]-num+i)//(i+1)
      c+=use
      num+=(i+1)*use
  return c<=k


ng,ok=10**15,-1
while abs(ng-ok)>1:
  mid=(ng+ok)//2
  if calc(mid):
    ok=mid
  else:
    ng=mid

print(ok)
0