結果

問題 No.1071 ベホマラー
ユーザー kohei2019kohei2019
提出日時 2020-12-22 03:26:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,824 KB
最終ジャッジ日時 2024-09-21 13:41:13
合計ジャッジ時間 4,697 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 33 ms
10,624 KB
testcase_10 AC 166 ms
19,932 KB
testcase_11 AC 160 ms
19,388 KB
testcase_12 AC 111 ms
16,436 KB
testcase_13 AC 140 ms
18,364 KB
testcase_14 AC 169 ms
20,112 KB
testcase_15 AC 190 ms
21,696 KB
testcase_16 AC 189 ms
21,688 KB
testcase_17 AC 189 ms
21,824 KB
testcase_18 AC 189 ms
21,724 KB
testcase_19 AC 188 ms
21,692 KB
testcase_20 AC 154 ms
21,512 KB
testcase_21 AC 108 ms
21,540 KB
testcase_22 AC 155 ms
21,616 KB
testcase_23 AC 108 ms
21,664 KB
testcase_24 AC 181 ms
21,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,X,Y = map(int,input().split())
lsA = list(map(int,input().split()))
lsA1 = [-(-(lsA[i]-1)//K) for i in range(N)]#必要回数
#ベホマラーの方がお得な回復人数
B = -(-Y//X)
lsA1.sort()
d = 0
ans = 0
for i in range(N):
    if lsA1[i]-d == 0:
        continue
    rm = N-i
    if rm >= B:
        ans += (lsA1[i]-d)*Y
        d = lsA1[i]
    else:
        ans += (lsA1[i]-d)*X
print(ans)
0