結果

問題 No.1071 ベホマラー
ユーザー freecss00freecss00
提出日時 2020-06-05 21:49:54
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 361 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,228 KB
最終ジャッジ日時 2024-12-17 14:17:34
合計ジャッジ時間 4,830 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 WA -
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 240 ms
21,712 KB
testcase_11 AC 236 ms
21,316 KB
testcase_12 AC 163 ms
17,788 KB
testcase_13 AC 206 ms
20,200 KB
testcase_14 AC 255 ms
22,388 KB
testcase_15 AC 290 ms
23,976 KB
testcase_16 AC 283 ms
23,972 KB
testcase_17 AC 287 ms
24,040 KB
testcase_18 AC 285 ms
24,040 KB
testcase_19 AC 289 ms
23,968 KB
testcase_20 WA -
testcase_21 AC 136 ms
24,104 KB
testcase_22 WA -
testcase_23 AC 138 ms
24,196 KB
testcase_24 AC 273 ms
24,104 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