結果

問題 No.1071 ベホマラー
ユーザー 👑 obakyanobakyan
提出日時 2020-06-05 23:28:45
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-09 23:52:42
合計ジャッジ時間 2,252 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 63 ms
6,944 KB
testcase_11 AC 61 ms
6,940 KB
testcase_12 AC 41 ms
6,940 KB
testcase_13 AC 55 ms
6,940 KB
testcase_14 AC 66 ms
6,940 KB
testcase_15 AC 76 ms
6,940 KB
testcase_16 AC 78 ms
6,940 KB
testcase_17 AC 75 ms
6,940 KB
testcase_18 AC 77 ms
6,944 KB
testcase_19 AC 78 ms
6,944 KB
testcase_20 AC 68 ms
6,944 KB
testcase_21 AC 66 ms
6,944 KB
testcase_22 AC 67 ms
6,940 KB
testcase_23 AC 66 ms
6,940 KB
testcase_24 AC 75 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mmi, mma = math.min, math.max
local mfl, mce = math.floor, math.ceil
local n, k = io.read("*n", "*n")
local x, y = io.read("*n", "*n")
local t = {}
for i = 1, n do
  local a = io.read("*n")
  t[i] = mce((a - 1) / k)
end
table.sort(t)
local lim = mce(y / x)
lim = mmi(lim, n + 1)
k = 0LL + k
x, y = 0LL + x, 0LL + y
local ret = 0LL
local cursum = 0LL
for i = 1, n do
  t[i] = 0LL + t[i]
end
for i = 1, n + 1 - lim do
  if cursum < t[i] then
    local rem = t[i] - cursum
    ret = ret + rem * y
    cursum = cursum + rem
  end
end
for i = n + 2 - lim, n do
  local rem = t[i] - cursum
  if 0 < rem then
    ret = ret + rem * x
  end
end
local str = tostring(ret):gsub("LL", "")
print(str)
0