結果

問題 No.1071 ベホマラー
ユーザー freecss00freecss00
提出日時 2020-06-05 21:49:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 361 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,196 KB
最終ジャッジ日時 2024-05-09 20:48:48
合計ジャッジ時間 4,430 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 24 ms
10,624 KB
testcase_10 AC 208 ms
21,812 KB
testcase_11 AC 217 ms
21,272 KB
testcase_12 AC 154 ms
17,776 KB
testcase_13 AC 197 ms
20,156 KB
testcase_14 AC 257 ms
22,192 KB
testcase_15 AC 271 ms
23,848 KB
testcase_16 AC 271 ms
24,100 KB
testcase_17 AC 273 ms
23,844 KB
testcase_18 AC 264 ms
24,100 KB
testcase_19 AC 269 ms
23,908 KB
testcase_20 WA -
testcase_21 AC 128 ms
23,976 KB
testcase_22 WA -
testcase_23 AC 129 ms
24,116 KB
testcase_24 AC 252 ms
24,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,x,y = map(int, input().split())
a = list(map(int, input().split()))
num = [(a[i]+k-2)//k for i in range(n)]
num.sort()
s = [0] * (n+1)
for i in range(n):
    s[i+1] = num[i] + s[i]

ans = y*s[n]
ycnt = 0
for i in range(n):
    if ycnt >= num[i]:
        continue
    ycnt += num[i] - ycnt
    ans = min(ans, y*ycnt + x*(s[n] - s[i] - ycnt*(n-i)))
print(ans)
0