結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 239 ms
22,084 KB
testcase_11 AC 230 ms
21,444 KB
testcase_12 AC 156 ms
17,880 KB
testcase_13 AC 206 ms
20,196 KB
testcase_14 AC 250 ms
22,316 KB
testcase_15 AC 292 ms
24,224 KB
testcase_16 AC 284 ms
24,228 KB
testcase_17 AC 282 ms
24,164 KB
testcase_18 AC 287 ms
24,292 KB
testcase_19 AC 281 ms
24,224 KB
testcase_20 AC 233 ms
24,068 KB
testcase_21 AC 245 ms
24,004 KB
testcase_22 AC 236 ms
24,064 KB
testcase_23 AC 241 ms
24,120 KB
testcase_24 AC 276 ms
24,196 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 = x*s[n]
ycnt = 0
for i in range(n):
    ycnt += max(0, num[i] - ycnt)
    ans = min(ans, y*ycnt + x*(s[n] - s[i] - ycnt*(n-i)))
print(ans)
0