結果

問題 No.2217 Suffix+
ユーザー 👑 obakyanobakyan
提出日時 2023-02-17 23:45:10
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-07-19 14:54:38
合計ジャッジ時間 4,580 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 12 ms
6,940 KB
testcase_15 AC 12 ms
6,940 KB
testcase_16 AC 23 ms
6,944 KB
testcase_17 AC 17 ms
6,940 KB
testcase_18 AC 14 ms
6,948 KB
testcase_19 AC 131 ms
10,240 KB
testcase_20 AC 111 ms
9,472 KB
testcase_21 AC 11 ms
6,940 KB
testcase_22 AC 89 ms
9,856 KB
testcase_23 AC 120 ms
7,424 KB
testcase_24 AC 46 ms
6,940 KB
testcase_25 AC 46 ms
6,940 KB
testcase_26 AC 44 ms
6,944 KB
testcase_27 AC 44 ms
6,944 KB
testcase_28 AC 46 ms
6,944 KB
testcase_29 AC 362 ms
11,392 KB
testcase_30 AC 359 ms
11,392 KB
testcase_31 AC 361 ms
11,392 KB
testcase_32 AC 351 ms
11,392 KB
testcase_33 AC 358 ms
11,392 KB
testcase_34 AC 43 ms
6,940 KB
testcase_35 AC 2 ms
6,948 KB
testcase_36 AC 127 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, k = io.read("*n", "*n")
k = 1LL * k
local a = {}
for i = 1, n do
  a[i] = 1LL * io.read("*n")
end

local function solve(x)
  local cnt = 0LL
  local sum = 0LL
  for i = 1, n do
    if sum + a[i] < x then
      local needadd = (x - sum - a[i] + i - 1LL) / (1LL * i)
      cnt = cnt + needadd
      if k < cnt then return false end
      sum = sum + needadd * i
    end
  end
  -- print(x, cnt)
  return true
end

local min, max = 0LL, 1LL * 1000000007 * 200000
while 1LL < max - min do
  local mid = (min + max) / 2LL
  if solve(mid) then
    min = mid
  else
    max = mid
  end
end
min = tostring(min):gsub("LL", "")
print(min)
0