結果

問題 No.1071 ベホマラー
ユーザー ka_zuka_zu
提出日時 2020-06-05 21:52:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 94,244 KB
最終ジャッジ日時 2024-12-17 14:24:12
合計ジャッジ時間 2,830 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,312 KB
testcase_01 AC 37 ms
52,672 KB
testcase_02 AC 37 ms
53,068 KB
testcase_03 AC 36 ms
53,488 KB
testcase_04 AC 37 ms
52,672 KB
testcase_05 AC 38 ms
53,468 KB
testcase_06 AC 36 ms
53,304 KB
testcase_07 AC 36 ms
53,416 KB
testcase_08 AC 37 ms
53,152 KB
testcase_09 AC 36 ms
53,668 KB
testcase_10 AC 78 ms
87,836 KB
testcase_11 AC 77 ms
85,580 KB
testcase_12 AC 63 ms
77,432 KB
testcase_13 AC 73 ms
83,780 KB
testcase_14 AC 82 ms
88,512 KB
testcase_15 AC 86 ms
92,044 KB
testcase_16 AC 84 ms
92,584 KB
testcase_17 AC 86 ms
93,076 KB
testcase_18 AC 87 ms
94,244 KB
testcase_19 AC 85 ms
92,556 KB
testcase_20 AC 71 ms
93,012 KB
testcase_21 AC 70 ms
92,400 KB
testcase_22 AC 71 ms
92,224 KB
testcase_23 AC 72 ms
94,224 KB
testcase_24 AC 78 ms
92,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N, K, X, Y = map(int,input().split())
A = list(map(int,input().split()))
A.sort()
C = []
for i in range(N):
    C.append(math.ceil((A[i]-1)/ K))

cnt = math.ceil(Y / X)#これ未満はベホイミのほうが良い
if cnt > N:
    print(sum(C) * X)
    exit()
else:
    B = C[-cnt]
    #print("A = ",A)
    #print("cnt = ", cnt)
    #print("B = ",B)
    #print("C = ",C)
    #print(C[-cnt:])
    ans = 0
    ans += B * Y
    tmp = sum(C[-cnt:]) - B *cnt
    ans += tmp * X
    print(ans)
0