結果

問題 No.1071 ベホマラー
ユーザー roarisroaris
提出日時 2020-06-05 21:37:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 88,028 KB
最終ジャッジ日時 2024-05-09 20:20:02
合計ジャッジ時間 2,725 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,016 KB
testcase_01 AC 38 ms
53,632 KB
testcase_02 AC 41 ms
53,888 KB
testcase_03 AC 39 ms
54,016 KB
testcase_04 AC 41 ms
54,016 KB
testcase_05 AC 44 ms
53,504 KB
testcase_06 AC 42 ms
54,016 KB
testcase_07 AC 40 ms
54,144 KB
testcase_08 AC 41 ms
53,876 KB
testcase_09 AC 40 ms
53,504 KB
testcase_10 AC 78 ms
83,188 KB
testcase_11 AC 77 ms
82,004 KB
testcase_12 AC 69 ms
76,032 KB
testcase_13 AC 74 ms
80,128 KB
testcase_14 AC 82 ms
84,804 KB
testcase_15 AC 87 ms
87,424 KB
testcase_16 AC 85 ms
87,408 KB
testcase_17 AC 86 ms
87,552 KB
testcase_18 AC 86 ms
87,636 KB
testcase_19 AC 86 ms
87,552 KB
testcase_20 AC 67 ms
86,328 KB
testcase_21 AC 68 ms
86,272 KB
testcase_22 AC 71 ms
86,640 KB
testcase_23 AC 70 ms
86,016 KB
testcase_24 AC 78 ms
88,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, K, X, Y = map(int, input().split())
A = list(map(int, input().split()))
cnt = [0]*N

for i in range(N):
    cnt[i] = (A[i]+K-2)//K

cnt.sort()
ans = 0
prev = 0

for i in range(N):
    ans += (cnt[i]-prev)*min((N-i)*X, Y)
    prev = cnt[i]

print(ans)
0