結果

問題 No.1071 ベホマラー
ユーザー qumazakiqumazaki
提出日時 2020-06-06 01:49:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 85,120 KB
最終ジャッジ日時 2024-05-10 02:59:50
合計ジャッジ時間 3,146 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 42 ms
51,584 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 73 ms
79,744 KB
testcase_11 AC 71 ms
78,336 KB
testcase_12 AC 60 ms
71,808 KB
testcase_13 AC 70 ms
77,824 KB
testcase_14 AC 74 ms
81,636 KB
testcase_15 AC 80 ms
83,456 KB
testcase_16 AC 74 ms
83,328 KB
testcase_17 AC 74 ms
84,736 KB
testcase_18 AC 76 ms
85,120 KB
testcase_19 AC 77 ms
84,608 KB
testcase_20 AC 62 ms
85,120 KB
testcase_21 AC 58 ms
82,816 KB
testcase_22 AC 60 ms
84,736 KB
testcase_23 AC 60 ms
84,608 KB
testcase_24 AC 68 ms
84,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,x,y = map(int,input().split())
a = list(map(int,input().split()))
a.sort(reverse=True)

# ベホイミのほうが効率が良い最大人数
upper = y//x
if(upper < n):
    bhm = 1 + (a[upper]-1-1)//k
else:
    upper = n
    bhm = 0

ans = y*bhm
for i in a[:upper]:
    remain = i - k*bhm
    if(remain<=0):
        continue
    ans += (1+(remain-1-1)//k) * x

print(ans)
0