結果

問題 No.1071 ベホマラー
ユーザー 👑 KazunKazun
提出日時 2020-06-05 22:14:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 93,184 KB
最終ジャッジ日時 2024-05-09 21:40:46
合計ジャッジ時間 2,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 32 ms
52,096 KB
testcase_03 AC 32 ms
52,224 KB
testcase_04 AC 32 ms
52,096 KB
testcase_05 AC 33 ms
52,224 KB
testcase_06 AC 33 ms
52,352 KB
testcase_07 AC 33 ms
51,840 KB
testcase_08 AC 34 ms
52,224 KB
testcase_09 AC 33 ms
51,840 KB
testcase_10 AC 81 ms
88,192 KB
testcase_11 AC 85 ms
86,016 KB
testcase_12 AC 70 ms
77,952 KB
testcase_13 AC 79 ms
83,584 KB
testcase_14 AC 88 ms
89,088 KB
testcase_15 AC 94 ms
92,544 KB
testcase_16 AC 92 ms
92,544 KB
testcase_17 AC 95 ms
92,800 KB
testcase_18 AC 94 ms
92,800 KB
testcase_19 AC 99 ms
93,184 KB
testcase_20 AC 80 ms
91,520 KB
testcase_21 AC 81 ms
92,160 KB
testcase_22 AC 76 ms
91,904 KB
testcase_23 AC 81 ms
91,776 KB
testcase_24 AC 88 ms
93,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import floor,ceil

N,K,X,Y=map(int,input().split())
A=list(map(int,input().split()))
D=set()

B=[]
for i in range(N):
    x=ceil((A[i]-1)/K)
    B.append(x)

B.sort()

T=min(floor(Y/X),N)

if T==N:
    print(sum(B)*X)
else:
    P=B[N-1-T]
    S=P*Y
    for b in B:
        S+=max(0,b-P)*X

    print(S)
0