結果

問題 No.1071 ベホマラー
ユーザー simansiman
提出日時 2020-08-31 05:23:02
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 390 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-11-15 16:22:47
合計ジャッジ時間 4,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,160 KB
testcase_01 AC 93 ms
12,032 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 91 ms
12,032 KB
testcase_04 AC 92 ms
12,288 KB
testcase_05 AC 91 ms
12,160 KB
testcase_06 AC 92 ms
12,032 KB
testcase_07 AC 92 ms
12,288 KB
testcase_08 AC 91 ms
12,032 KB
testcase_09 AC 94 ms
12,160 KB
testcase_10 AC 158 ms
18,816 KB
testcase_11 WA -
testcase_12 AC 132 ms
16,640 KB
testcase_13 AC 154 ms
18,432 KB
testcase_14 AC 160 ms
19,072 KB
testcase_15 AC 170 ms
20,736 KB
testcase_16 AC 171 ms
20,864 KB
testcase_17 AC 174 ms
20,992 KB
testcase_18 AC 177 ms
21,504 KB
testcase_19 AC 172 ms
20,864 KB
testcase_20 AC 164 ms
21,760 KB
testcase_21 WA -
testcase_22 AC 167 ms
21,632 KB
testcase_23 AC 165 ms
21,760 KB
testcase_24 AC 164 ms
20,864 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K, X, Y = gets.split.map(&:to_i)
A = gets.split.map { |a| a.to_i - 1 }.sort
C = A.map { |a| a / K + (a % K == 0 ? 0 : 1) }

if X >= Y
  puts C.max
  exit
end

if N * X <= Y
  puts C.map { |c| c * X }.sum
  exit
end

ok = Y / X

bhm_cnt = ok == N ? 0 : C[N - ok - 1]
bh_cnt = C[N - ok..].map { |c| c - bhm_cnt }.sum

# p [:bh_cnt, bh_cnt, :bhm_cnt, bhm_cnt]
puts X * bh_cnt + Y * bhm_cnt
0