結果

問題 No.1071 ベホマラー
ユーザー convexineqconvexineq
提出日時 2020-06-05 21:36:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,668 KB
最終ジャッジ日時 2024-05-09 20:19:03
合計ジャッジ時間 2,924 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 91 ms
19,912 KB
testcase_11 AC 89 ms
19,636 KB
testcase_12 AC 68 ms
16,560 KB
testcase_13 AC 94 ms
18,360 KB
testcase_14 AC 97 ms
20,232 KB
testcase_15 AC 108 ms
21,516 KB
testcase_16 AC 107 ms
21,648 KB
testcase_17 AC 122 ms
21,516 KB
testcase_18 AC 128 ms
21,644 KB
testcase_19 AC 118 ms
21,512 KB
testcase_20 AC 108 ms
21,664 KB
testcase_21 AC 83 ms
21,660 KB
testcase_22 AC 107 ms
21,668 KB
testcase_23 AC 101 ms
21,536 KB
testcase_24 AC 98 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