結果

問題 No.1071 ベホマラー
ユーザー mlihua09mlihua09
提出日時 2020-09-20 17:36:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,200 KB
最終ジャッジ日時 2024-06-24 10:51:36
合計ジャッジ時間 2,663 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,328 KB
testcase_01 AC 36 ms
52,776 KB
testcase_02 AC 39 ms
53,252 KB
testcase_03 AC 39 ms
53,156 KB
testcase_04 AC 37 ms
52,972 KB
testcase_05 AC 37 ms
52,936 KB
testcase_06 AC 40 ms
52,340 KB
testcase_07 AC 36 ms
52,968 KB
testcase_08 AC 37 ms
53,428 KB
testcase_09 AC 35 ms
52,724 KB
testcase_10 AC 69 ms
81,112 KB
testcase_11 AC 67 ms
79,728 KB
testcase_12 AC 59 ms
72,844 KB
testcase_13 AC 66 ms
77,096 KB
testcase_14 AC 72 ms
82,996 KB
testcase_15 AC 76 ms
83,476 KB
testcase_16 AC 74 ms
83,964 KB
testcase_17 AC 79 ms
86,200 KB
testcase_18 AC 77 ms
84,796 KB
testcase_19 AC 75 ms
84,816 KB
testcase_20 AC 63 ms
85,312 KB
testcase_21 AC 60 ms
83,640 KB
testcase_22 AC 64 ms
85,720 KB
testcase_23 AC 60 ms
84,828 KB
testcase_24 AC 69 ms
86,164 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