結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 229 ms
21,792 KB
testcase_11 AC 230 ms
21,572 KB
testcase_12 AC 158 ms
17,916 KB
testcase_13 AC 212 ms
20,068 KB
testcase_14 AC 261 ms
22,188 KB
testcase_15 AC 275 ms
24,036 KB
testcase_16 AC 278 ms
24,160 KB
testcase_17 AC 278 ms
24,228 KB
testcase_18 AC 273 ms
24,228 KB
testcase_19 AC 269 ms
24,356 KB
testcase_20 AC 230 ms
24,000 KB
testcase_21 AC 235 ms
24,100 KB
testcase_22 AC 242 ms
24,112 KB
testcase_23 AC 231 ms
24,036 KB
testcase_24 AC 257 ms
24,228 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