結果

問題 No.2217 Suffix+
ユーザー qibqib
提出日時 2023-05-10 22:28:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 92,348 KB
最終ジャッジ日時 2024-11-27 02:30:15
合計ジャッジ時間 6,624 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,956 KB
testcase_01 AC 39 ms
53,724 KB
testcase_02 AC 39 ms
53,224 KB
testcase_03 AC 37 ms
52,676 KB
testcase_04 AC 38 ms
53,212 KB
testcase_05 AC 36 ms
52,492 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 36 ms
52,156 KB
testcase_08 AC 38 ms
52,068 KB
testcase_09 AC 37 ms
52,380 KB
testcase_10 AC 37 ms
52,336 KB
testcase_11 AC 37 ms
52,732 KB
testcase_12 AC 36 ms
52,312 KB
testcase_13 AC 38 ms
52,008 KB
testcase_14 AC 86 ms
68,824 KB
testcase_15 AC 87 ms
69,692 KB
testcase_16 AC 123 ms
75,700 KB
testcase_17 AC 105 ms
72,576 KB
testcase_18 AC 90 ms
71,404 KB
testcase_19 AC 191 ms
82,892 KB
testcase_20 AC 182 ms
81,552 KB
testcase_21 AC 67 ms
65,608 KB
testcase_22 AC 193 ms
83,116 KB
testcase_23 AC 152 ms
76,852 KB
testcase_24 AC 185 ms
89,988 KB
testcase_25 AC 180 ms
90,600 KB
testcase_26 AC 181 ms
90,144 KB
testcase_27 AC 180 ms
89,692 KB
testcase_28 AC 184 ms
90,792 KB
testcase_29 AC 208 ms
92,296 KB
testcase_30 AC 204 ms
91,944 KB
testcase_31 AC 210 ms
91,916 KB
testcase_32 AC 207 ms
92,348 KB
testcase_33 AC 210 ms
92,228 KB
testcase_34 AC 179 ms
91,116 KB
testcase_35 AC 36 ms
52,364 KB
testcase_36 AC 209 ms
92,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ok = min(a)
ng = 1 << 60
while abs(ok - ng) > 1:
  mid = (ok + ng) // 2

  offset = 0
  cnt = 0
  for i in range(n):
    cost = max(0, (mid - a[i] - offset + i) // (i + 1))
    cnt += cost
    offset += cost * (i + 1)

  if cnt <= k:
    ok = mid
  else:
    ng = mid

print(ok)
0