結果

問題 No.1071 ベホマラー
ユーザー maguchi_p_qmaguchi_p_q
提出日時 2020-06-12 19:36:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,048 KB
最終ジャッジ日時 2024-06-24 04:09:56
合計ジャッジ時間 4,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 166 ms
20,092 KB
testcase_11 AC 170 ms
19,668 KB
testcase_12 AC 120 ms
16,712 KB
testcase_13 AC 114 ms
18,644 KB
testcase_14 AC 178 ms
20,516 KB
testcase_15 AC 214 ms
21,980 KB
testcase_16 AC 206 ms
21,976 KB
testcase_17 AC 145 ms
21,976 KB
testcase_18 AC 127 ms
22,048 KB
testcase_19 AC 164 ms
21,984 KB
testcase_20 AC 94 ms
21,812 KB
testcase_21 AC 111 ms
21,816 KB
testcase_22 AC 98 ms
21,812 KB
testcase_23 AC 113 ms
21,812 KB
testcase_24 AC 170 ms
21,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil

N,K,X,Y = [int(zz) for zz in input().split()]
A = [ceil((int(zz)-1)/K) for zz in input().split()]

A.sort()
tmp = 0
ans = 0
for i in range(N):
    if A[i]-tmp > 0:
        if X*(N-i) > Y:
            ans += Y*(A[i]-tmp)
        else:
            break
        tmp = A[i]
    A[i] = 0
if sum(A) > 0:
    ans += (sum(A)-(N-i)*tmp)*X
print(ans)
0