結果

問題 No.1071 ベホマラー
ユーザー mlihua09mlihua09
提出日時 2020-09-20 17:35:41
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 370 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 92,280 KB
最終ジャッジ日時 2024-06-24 10:51:28
合計ジャッジ時間 3,312 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,176 KB
testcase_01 RE -
testcase_02 AC 39 ms
52,696 KB
testcase_03 AC 39 ms
51,760 KB
testcase_04 AC 38 ms
52,620 KB
testcase_05 AC 38 ms
51,884 KB
testcase_06 AC 38 ms
53,356 KB
testcase_07 AC 38 ms
53,892 KB
testcase_08 AC 39 ms
52,616 KB
testcase_09 AC 37 ms
52,708 KB
testcase_10 AC 74 ms
81,240 KB
testcase_11 AC 71 ms
79,260 KB
testcase_12 AC 64 ms
73,040 KB
testcase_13 AC 70 ms
77,420 KB
testcase_14 AC 75 ms
81,576 KB
testcase_15 AC 78 ms
84,000 KB
testcase_16 AC 79 ms
85,124 KB
testcase_17 AC 79 ms
84,912 KB
testcase_18 AC 82 ms
84,456 KB
testcase_19 AC 81 ms
85,936 KB
testcase_20 RE -
testcase_21 AC 64 ms
84,412 KB
testcase_22 RE -
testcase_23 AC 65 ms
84,504 KB
testcase_24 AC 71 ms
85,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N, K, X, Y = map(int, input().split())

A = list(map(lambda x: int(x) - 1, input().split()))

A.sort()

n = Y // X
if n < N:
    
    x = (A[N - n - 1] - 1) // K + 1
    
    ans = x * Y
    
    
    for i in range(N - n, N):
        
        ans += ((A[i] - 1) // K + 1 - x) * X
    
    print(ans)
    
else:
    
    print(sum([((a - 1) // K + 1) * x for a in A]))
0