結果

問題 No.1071 ベホマラー
ユーザー GeckoちゃんGeckoちゃん
提出日時 2020-06-23 13:47:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,804 KB
最終ジャッジ日時 2024-07-03 19:15:33
合計ジャッジ時間 2,944 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 96 ms
20,108 KB
testcase_11 AC 88 ms
19,544 KB
testcase_12 AC 67 ms
16,728 KB
testcase_13 AC 89 ms
18,652 KB
testcase_14 AC 102 ms
20,136 KB
testcase_15 AC 111 ms
21,740 KB
testcase_16 AC 108 ms
21,804 KB
testcase_17 AC 119 ms
21,684 KB
testcase_18 AC 118 ms
21,680 KB
testcase_19 AC 115 ms
21,676 KB
testcase_20 AC 101 ms
21,700 KB
testcase_21 AC 90 ms
21,692 KB
testcase_22 AC 93 ms
21,700 KB
testcase_23 AC 95 ms
21,692 KB
testcase_24 AC 97 ms
21,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N,K,X,Y=map(int,input().split())
Ax=list(map(lambda x:int(x),input().split()))

B=[(a-1+K-1)//K for a in Ax]
B.sort(reverse=True)
if Y <= X:
    print(Y*B[0])
    exit()

t = math.ceil(Y/X)-1
if t<N:
    print(Y * B[t] + X * sum(B[i] - B[t] for i in range(t)))
else:
    print(X * sum(B[i] for i in range(N)))
0