結果

問題 No.1071 ベホマラー
ユーザー FromBooskaFromBooska
提出日時 2023-08-11 10:59:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 94,748 KB
最終ジャッジ日時 2024-11-18 03:02:32
合計ジャッジ時間 3,160 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,092 KB
testcase_01 AC 38 ms
52,312 KB
testcase_02 AC 38 ms
52,396 KB
testcase_03 AC 38 ms
52,692 KB
testcase_04 AC 37 ms
53,496 KB
testcase_05 AC 38 ms
51,948 KB
testcase_06 AC 38 ms
53,332 KB
testcase_07 AC 37 ms
52,764 KB
testcase_08 AC 37 ms
52,856 KB
testcase_09 AC 37 ms
52,344 KB
testcase_10 AC 82 ms
87,788 KB
testcase_11 AC 80 ms
86,728 KB
testcase_12 AC 67 ms
78,328 KB
testcase_13 AC 77 ms
84,136 KB
testcase_14 AC 85 ms
90,332 KB
testcase_15 AC 92 ms
93,664 KB
testcase_16 AC 90 ms
94,748 KB
testcase_17 AC 90 ms
93,672 KB
testcase_18 AC 90 ms
94,040 KB
testcase_19 AC 91 ms
94,724 KB
testcase_20 AC 75 ms
93,164 KB
testcase_21 AC 73 ms
92,596 KB
testcase_22 AC 74 ms
92,592 KB
testcase_23 AC 75 ms
93,024 KB
testcase_24 AC 83 ms
93,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 想定解法でやってみる

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

AK = [0]
for a in A:
    calc = (a-1+K-1)//K
    AK.append(calc)
AK.sort()
    
#print(AK)

if sum(AK) == 0:
    print(0)
    exit()

ans = 0
y = 0
for i in range(N):
    remaining = N-i
    if X*remaining > Y:
        y = i+1
    else:
        ans += (AK[i+1]-AK[y])*X
ans += AK[y]*Y
print(ans)
0