結果

問題 No.1071 ベホマラー
ユーザー ohanaohana
提出日時 2023-11-17 16:48:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 875 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-09-26 05:26:45
合計ジャッジ時間 3,606 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 39 ms
51,584 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 80 ms
82,176 KB
testcase_11 AC 76 ms
80,768 KB
testcase_12 AC 65 ms
73,856 KB
testcase_13 AC 76 ms
79,360 KB
testcase_14 AC 82 ms
84,736 KB
testcase_15 AC 88 ms
86,400 KB
testcase_16 AC 90 ms
85,888 KB
testcase_17 AC 91 ms
87,040 KB
testcase_18 AC 90 ms
86,784 KB
testcase_19 AC 87 ms
87,168 KB
testcase_20 AC 68 ms
84,224 KB
testcase_21 AC 72 ms
85,504 KB
testcase_22 AC 70 ms
84,224 KB
testcase_23 AC 74 ms
85,504 KB
testcase_24 AC 84 ms
87,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k, x, y = map(int, input().split())
A = list(map(int, input().split()))

th = int(-(-y // x))
B = [-(-(a - 1) // k) for a in A]
B.sort(reverse=True)

if th > n:
    print(sum(B))
else:
    Y_num = B[th - 1]
    ans = Y_num * y
    ans += sum([max(0, b - Y_num) * x for b in B])
    print(ans)
0