結果

問題 No.1071 ベホマラー
ユーザー yuly3yuly3
提出日時 2020-06-26 10:39:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 86,524 KB
最終ジャッジ日時 2024-07-03 22:10:47
合計ジャッジ時間 3,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,368 KB
testcase_01 AC 37 ms
53,032 KB
testcase_02 AC 38 ms
52,072 KB
testcase_03 AC 38 ms
52,396 KB
testcase_04 AC 37 ms
52,120 KB
testcase_05 AC 41 ms
52,312 KB
testcase_06 AC 36 ms
53,112 KB
testcase_07 AC 37 ms
53,136 KB
testcase_08 AC 37 ms
52,696 KB
testcase_09 AC 37 ms
52,620 KB
testcase_10 AC 74 ms
81,220 KB
testcase_11 AC 73 ms
79,168 KB
testcase_12 AC 63 ms
72,780 KB
testcase_13 AC 72 ms
77,560 KB
testcase_14 AC 78 ms
82,180 KB
testcase_15 AC 80 ms
84,332 KB
testcase_16 AC 81 ms
85,336 KB
testcase_17 AC 83 ms
86,524 KB
testcase_18 AC 83 ms
86,432 KB
testcase_19 AC 83 ms
85,736 KB
testcase_20 AC 68 ms
84,508 KB
testcase_21 AC 65 ms
84,280 KB
testcase_22 AC 67 ms
85,356 KB
testcase_23 AC 68 ms
84,512 KB
testcase_24 AC 76 ms
84,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 7)
rl = sys.stdin.readline


def solve():
    N, K, X, Y = map(int, rl().split())
    A = [ai - 1 for ai in map(int, rl().split())]
    
    lim = Y // X
    if lim == 0:
        print(-(-max(A) // K))
        return
    
    B = [-(-ai // K) for ai in A]
    B.sort()
    C = B[-lim:]
    
    cnt = 0
    if len(C) != N:
        cnt = B[-(lim + 1)]
    
    ans = cnt * Y
    for ci in C:
        ans += (ci - cnt) * X
    print(ans)


if __name__ == '__main__':
    solve()
0