結果

問題 No.2217 Suffix+
ユーザー qibqib
提出日時 2023-05-10 22:28:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 92,032 KB
最終ジャッジ日時 2024-05-05 07:42:43
合計ジャッジ時間 6,817 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 40 ms
51,200 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 43 ms
51,456 KB
testcase_06 AC 41 ms
51,328 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 41 ms
51,456 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 40 ms
51,200 KB
testcase_11 AC 41 ms
51,840 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 39 ms
51,840 KB
testcase_14 AC 92 ms
67,840 KB
testcase_15 AC 93 ms
68,736 KB
testcase_16 AC 130 ms
74,752 KB
testcase_17 AC 112 ms
72,192 KB
testcase_18 AC 102 ms
70,400 KB
testcase_19 AC 211 ms
82,432 KB
testcase_20 AC 193 ms
80,128 KB
testcase_21 AC 74 ms
64,512 KB
testcase_22 AC 203 ms
81,024 KB
testcase_23 AC 169 ms
76,288 KB
testcase_24 AC 200 ms
89,344 KB
testcase_25 AC 197 ms
88,576 KB
testcase_26 AC 197 ms
88,704 KB
testcase_27 AC 200 ms
89,472 KB
testcase_28 AC 201 ms
89,344 KB
testcase_29 AC 226 ms
91,392 KB
testcase_30 AC 226 ms
91,264 KB
testcase_31 AC 224 ms
91,904 KB
testcase_32 AC 224 ms
91,392 KB
testcase_33 AC 225 ms
92,032 KB
testcase_34 AC 200 ms
89,728 KB
testcase_35 AC 41 ms
51,968 KB
testcase_36 AC 225 ms
91,264 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