結果

問題 No.1071 ベホマラー
ユーザー yuruhiyayuruhiya
提出日時 2020-07-21 16:39:25
言語 Ruby
(3.3.0)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 27,648 KB
最終ジャッジ日時 2024-06-09 12:27:36
合計ジャッジ時間 4,972 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,160 KB
testcase_01 AC 72 ms
12,032 KB
testcase_02 AC 76 ms
12,288 KB
testcase_03 AC 73 ms
12,160 KB
testcase_04 AC 72 ms
12,160 KB
testcase_05 AC 72 ms
12,288 KB
testcase_06 AC 71 ms
12,032 KB
testcase_07 AC 74 ms
12,032 KB
testcase_08 AC 76 ms
12,288 KB
testcase_09 AC 76 ms
12,288 KB
testcase_10 AC 173 ms
25,472 KB
testcase_11 AC 172 ms
24,960 KB
testcase_12 AC 132 ms
17,664 KB
testcase_13 AC 135 ms
19,712 KB
testcase_14 AC 160 ms
23,296 KB
testcase_15 AC 171 ms
25,600 KB
testcase_16 AC 186 ms
27,648 KB
testcase_17 AC 160 ms
23,168 KB
testcase_18 AC 158 ms
23,168 KB
testcase_19 AC 160 ms
23,168 KB
testcase_20 AC 151 ms
23,424 KB
testcase_21 AC 152 ms
23,168 KB
testcase_22 AC 153 ms
23,296 KB
testcase_23 AC 154 ms
23,168 KB
testcase_24 AC 159 ms
23,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, k, x, y = gets.split.map &:to_i
a = gets.split.map &:to_i
b = a.map { |i| (i + k - 2) / k }.sort
cul = [0] * (n + 1)
n.pred.downto(0) do |i|
  cul[i] = cul[i + 1] + b[i]
end

y = x * n if y > x * n
puts n.times.to_a.map { |i|
  b[i] * y + (cul[i + 1] - b[i] * (n - 1 - i)) * x
}.min
0