結果

問題 No.1071 ベホマラー
ユーザー ka_zuka_zu
提出日時 2020-06-05 21:48:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 495 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-05-09 20:46:09
合計ジャッジ時間 2,589 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 32 ms
52,224 KB
testcase_02 AC 32 ms
52,224 KB
testcase_03 AC 32 ms
52,224 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 34 ms
52,224 KB
testcase_07 AC 33 ms
52,096 KB
testcase_08 AC 33 ms
52,224 KB
testcase_09 WA -
testcase_10 AC 95 ms
87,424 KB
testcase_11 AC 76 ms
85,504 KB
testcase_12 AC 61 ms
77,312 KB
testcase_13 AC 70 ms
83,200 KB
testcase_14 AC 77 ms
88,448 KB
testcase_15 AC 84 ms
91,776 KB
testcase_16 AC 87 ms
91,904 KB
testcase_17 AC 88 ms
92,800 KB
testcase_18 AC 88 ms
92,928 KB
testcase_19 AC 86 ms
92,288 KB
testcase_20 AC 72 ms
91,904 KB
testcase_21 AC 82 ms
91,520 KB
testcase_22 AC 72 ms
91,904 KB
testcase_23 AC 74 ms
92,416 KB
testcase_24 AC 81 ms
92,416 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