結果

問題 No.1071 ベホマラー
ユーザー convexineqconvexineq
提出日時 2020-06-05 21:36:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,548 KB
最終ジャッジ日時 2024-12-17 13:42:46
合計ジャッジ時間 2,954 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 93 ms
19,660 KB
testcase_11 AC 91 ms
19,376 KB
testcase_12 AC 67 ms
16,404 KB
testcase_13 AC 95 ms
18,360 KB
testcase_14 AC 95 ms
20,104 KB
testcase_15 AC 108 ms
21,520 KB
testcase_16 AC 111 ms
21,512 KB
testcase_17 AC 120 ms
21,516 KB
testcase_18 AC 124 ms
21,548 KB
testcase_19 AC 118 ms
21,512 KB
testcase_20 AC 107 ms
21,532 KB
testcase_21 AC 85 ms
21,524 KB
testcase_22 AC 110 ms
21,540 KB
testcase_23 AC 101 ms
21,536 KB
testcase_24 AC 100 ms
21,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
read = sys.stdin.read
readline = sys.stdin.readline

n,k,x,y, *a = map(int,read().split())

c = y//x
a.sort()
a = [(i-1+k-1)//k for i in a]


ans = 0
idx = max(n-1-c,-1)
if idx >= 0: v = a[idx]
else: v= 0
ans += v*y

for i in a[idx+1:]:
    ans += (i-v)*x

print(ans)
0