結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 193 ms
19,952 KB
testcase_11 AC 189 ms
19,528 KB
testcase_12 AC 137 ms
16,584 KB
testcase_13 AC 173 ms
18,508 KB
testcase_14 AC 206 ms
20,252 KB
testcase_15 AC 235 ms
21,968 KB
testcase_16 AC 227 ms
21,976 KB
testcase_17 AC 237 ms
21,844 KB
testcase_18 AC 232 ms
21,852 KB
testcase_19 AC 229 ms
21,848 KB
testcase_20 AC 113 ms
21,724 KB
testcase_21 AC 114 ms
21,680 KB
testcase_22 AC 116 ms
21,684 KB
testcase_23 AC 113 ms
21,660 KB
testcase_24 AC 225 ms
21,856 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