結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,324 KB
testcase_01 AC 40 ms
53,404 KB
testcase_02 AC 35 ms
53,016 KB
testcase_03 AC 35 ms
53,264 KB
testcase_04 AC 36 ms
52,940 KB
testcase_05 AC 36 ms
53,148 KB
testcase_06 AC 36 ms
53,248 KB
testcase_07 AC 35 ms
53,372 KB
testcase_08 AC 36 ms
52,732 KB
testcase_09 WA -
testcase_10 AC 77 ms
88,592 KB
testcase_11 AC 74 ms
86,784 KB
testcase_12 AC 61 ms
77,620 KB
testcase_13 AC 71 ms
84,476 KB
testcase_14 AC 79 ms
89,852 KB
testcase_15 AC 82 ms
92,812 KB
testcase_16 AC 82 ms
92,272 KB
testcase_17 AC 87 ms
93,324 KB
testcase_18 AC 89 ms
93,480 KB
testcase_19 AC 87 ms
94,060 KB
testcase_20 AC 71 ms
92,296 KB
testcase_21 AC 70 ms
92,532 KB
testcase_22 AC 68 ms
93,128 KB
testcase_23 AC 72 ms
92,688 KB
testcase_24 AC 77 ms
92,636 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