結果

問題 No.1071 ベホマラー
ユーザー simansiman
提出日時 2020-08-31 05:12:12
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 389 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 24,832 KB
最終ジャッジ日時 2024-11-15 16:22:40
合計ジャッジ時間 5,455 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,160 KB
testcase_01 AC 86 ms
12,416 KB
testcase_02 AC 92 ms
12,032 KB
testcase_03 AC 85 ms
12,160 KB
testcase_04 AC 86 ms
12,160 KB
testcase_05 AC 82 ms
12,160 KB
testcase_06 AC 86 ms
12,032 KB
testcase_07 AC 85 ms
12,160 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 AC 86 ms
12,160 KB
testcase_10 AC 159 ms
21,376 KB
testcase_11 WA -
testcase_12 AC 140 ms
16,640 KB
testcase_13 AC 171 ms
19,712 KB
testcase_14 AC 173 ms
22,144 KB
testcase_15 AC 200 ms
23,680 KB
testcase_16 AC 177 ms
23,808 KB
testcase_17 AC 216 ms
24,320 KB
testcase_18 AC 177 ms
24,576 KB
testcase_19 AC 175 ms
23,680 KB
testcase_20 AC 167 ms
24,576 KB
testcase_21 WA -
testcase_22 AC 172 ms
24,832 KB
testcase_23 AC 171 ms
24,832 KB
testcase_24 AC 173 ms
23,936 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:17: warning: assigned but unused variable - ans
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| Rational(a, K).ceil }

if X >= Y
  puts C.max
  exit
end

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

ok = Y / X

ans = 0
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