結果

問題 No.1071 ベホマラー
ユーザー shi-moshi-mo
提出日時 2020-10-01 23:26:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 23,808 KB
最終ジャッジ日時 2024-07-07 06:39:29
合計ジャッジ時間 4,588 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
11,904 KB
testcase_01 AC 85 ms
12,032 KB
testcase_02 AC 84 ms
12,032 KB
testcase_03 AC 84 ms
12,032 KB
testcase_04 AC 84 ms
12,160 KB
testcase_05 AC 85 ms
12,032 KB
testcase_06 AC 86 ms
12,160 KB
testcase_07 AC 85 ms
12,160 KB
testcase_08 AC 87 ms
12,032 KB
testcase_09 AC 88 ms
11,904 KB
testcase_10 AC 157 ms
20,480 KB
testcase_11 AC 169 ms
20,224 KB
testcase_12 AC 132 ms
16,000 KB
testcase_13 AC 168 ms
18,944 KB
testcase_14 AC 167 ms
20,864 KB
testcase_15 AC 197 ms
22,656 KB
testcase_16 AC 177 ms
22,912 KB
testcase_17 AC 204 ms
23,552 KB
testcase_18 AC 184 ms
23,552 KB
testcase_19 AC 176 ms
22,912 KB
testcase_20 AC 175 ms
23,680 KB
testcase_21 AC 166 ms
23,040 KB
testcase_22 AC 175 ms
23,680 KB
testcase_23 AC 173 ms
23,808 KB
testcase_24 AC 169 ms
22,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, h, x, y = gets.split.map(&:to_i)
a = gets.split.map{|ai| ai.to_i-1 }.sort!
c = a.map{|ai| Rational(ai, h).ceil }

if y <= x
  puts y * c.max
  exit
end
if n*x <= y
  puts c.map{|ci| ci*x }.sum
  exit
end

ny = Rational(y, x).ceil
cy = c[n - ny]
cx = c[(n-ny+1)..].map{|ci| ci - cy }.sum
puts x*cx + y*cy
0