結果

問題 No.1071 ベホマラー
ユーザー toyuzukotoyuzuko
提出日時 2020-06-07 15:33:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,820 KB
最終ジャッジ日時 2024-06-06 05:37:06
合計ジャッジ時間 4,357 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 197 ms
19,800 KB
testcase_11 AC 196 ms
19,248 KB
testcase_12 AC 137 ms
16,428 KB
testcase_13 AC 147 ms
18,484 KB
testcase_14 AC 206 ms
19,972 KB
testcase_15 AC 237 ms
21,564 KB
testcase_16 AC 238 ms
21,688 KB
testcase_17 AC 194 ms
21,820 KB
testcase_18 AC 179 ms
21,688 KB
testcase_19 AC 208 ms
21,804 KB
testcase_20 AC 143 ms
21,652 KB
testcase_21 AC 185 ms
21,652 KB
testcase_22 AC 144 ms
21,652 KB
testcase_23 AC 136 ms
21,528 KB
testcase_24 AC 210 ms
21,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K, X, Y = map(int, input().split())
A = list(map(int, input().split()))
C = [(a - 2) // K + 1 for a in A]
C.sort()

mp = 0
recover = 0

for i in range(N):
    if (N - i) * X > Y:
        mp += (C[i] - recover) * Y
        recover = C[i]
    else:
        for j in range(N):
            mp += max(C[j] - recover, 0) * X
        break

print(mp)
0