結果

問題 No.1071 ベホマラー
ユーザー rythem00359rythem00359
提出日時 2020-08-25 18:07:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,976 KB
最終ジャッジ日時 2024-11-06 11:37:05
合計ジャッジ時間 4,393 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 191 ms
20,060 KB
testcase_11 AC 191 ms
19,664 KB
testcase_12 AC 134 ms
16,772 KB
testcase_13 AC 171 ms
18,636 KB
testcase_14 AC 204 ms
20,384 KB
testcase_15 AC 229 ms
21,972 KB
testcase_16 AC 222 ms
21,976 KB
testcase_17 AC 229 ms
21,972 KB
testcase_18 AC 229 ms
21,976 KB
testcase_19 AC 230 ms
21,968 KB
testcase_20 AC 115 ms
21,808 KB
testcase_21 AC 118 ms
21,808 KB
testcase_22 AC 115 ms
21,808 KB
testcase_23 AC 114 ms
21,804 KB
testcase_24 AC 215 ms
21,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil
n,k,x,y=map(int,input().split())
a=sorted([*map(lambda x:ceil((int(x)-1)/k),input().split())])
ans,m,b,c=0,0,n,0
while b>0:
    m=a[-b]-c
    ans+=y*m if y<b*x else b*x*m
    c=a[-b]
    while a[-b]-c<=0 and b>0:b-=1
print(ans)
0