結果

問題 No.1071 ベホマラー
ユーザー toyuzukotoyuzuko
提出日時 2020-06-07 15:33:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,824 KB
最終ジャッジ日時 2024-12-23 17:28:36
合計ジャッジ時間 3,619 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 166 ms
19,976 KB
testcase_11 AC 170 ms
19,372 KB
testcase_12 AC 116 ms
16,424 KB
testcase_13 AC 127 ms
18,352 KB
testcase_14 AC 179 ms
20,100 KB
testcase_15 AC 196 ms
21,816 KB
testcase_16 AC 202 ms
21,816 KB
testcase_17 AC 163 ms
21,812 KB
testcase_18 AC 151 ms
21,824 KB
testcase_19 AC 175 ms
21,688 KB
testcase_20 AC 126 ms
21,528 KB
testcase_21 AC 164 ms
21,656 KB
testcase_22 AC 123 ms
21,532 KB
testcase_23 AC 119 ms
21,656 KB
testcase_24 AC 167 ms
21,720 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