結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 73 ms
79,616 KB
testcase_11 AC 66 ms
78,208 KB
testcase_12 AC 57 ms
71,808 KB
testcase_13 AC 69 ms
77,312 KB
testcase_14 AC 73 ms
81,280 KB
testcase_15 AC 75 ms
83,584 KB
testcase_16 AC 78 ms
83,328 KB
testcase_17 AC 82 ms
84,736 KB
testcase_18 AC 78 ms
84,864 KB
testcase_19 AC 78 ms
84,352 KB
testcase_20 AC 64 ms
84,736 KB
testcase_21 AC 60 ms
82,688 KB
testcase_22 AC 65 ms
85,120 KB
testcase_23 AC 64 ms
84,608 KB
testcase_24 AC 72 ms
84,480 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