結果

問題 No.1071 ベホマラー
ユーザー pluto77pluto77
提出日時 2020-06-23 11:39:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,236 KB
最終ジャッジ日時 2024-07-03 19:13:17
合計ジャッジ時間 4,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 224 ms
21,800 KB
testcase_11 AC 220 ms
21,432 KB
testcase_12 AC 157 ms
17,780 KB
testcase_13 AC 201 ms
20,324 KB
testcase_14 AC 247 ms
22,316 KB
testcase_15 AC 268 ms
24,032 KB
testcase_16 AC 269 ms
24,024 KB
testcase_17 AC 268 ms
24,032 KB
testcase_18 AC 264 ms
24,096 KB
testcase_19 AC 267 ms
24,096 KB
testcase_20 AC 231 ms
24,108 KB
testcase_21 AC 232 ms
24,236 KB
testcase_22 AC 225 ms
24,112 KB
testcase_23 AC 239 ms
24,096 KB
testcase_24 AC 264 ms
24,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1071
N,K,X,Y=map(int,input().split())
A=list(map(int,input().split()))
B=[0]*N
for i in range(0,N):
 B[i]=(A[i]+K-2)//K
B.sort()
R=[0]*(N+1)
for i in range(0,N):
 R[N-i-1]=R[N-i]+B[N-i-1]
res=R[0]*X
for i in range(0,N):
 t=B[i]*Y+(R[i+1]-(N-1-i)*B[i])*X
 res=min(res,t)
print(res)
0