結果

問題 No.1071 ベホマラー
ユーザー paruf4paruf4
提出日時 2020-06-05 23:46:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,808 KB
最終ジャッジ日時 2024-05-10 00:14:03
合計ジャッジ時間 3,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 WA -
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 30 ms
11,008 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 140 ms
19,936 KB
testcase_11 AC 138 ms
19,532 KB
testcase_12 AC 100 ms
16,532 KB
testcase_13 AC 155 ms
18,512 KB
testcase_14 AC 144 ms
20,252 KB
testcase_15 AC 165 ms
21,660 KB
testcase_16 AC 171 ms
21,660 KB
testcase_17 AC 201 ms
21,660 KB
testcase_18 AC 210 ms
21,664 KB
testcase_19 AC 187 ms
21,660 KB
testcase_20 WA -
testcase_21 AC 144 ms
21,684 KB
testcase_22 WA -
testcase_23 AC 168 ms
21,676 KB
testcase_24 AC 167 ms
21,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,x,y=map(int,input().split())
a=[int(i)-1 for i in input().split()]
idx=-1

if sum(a)<y:
  print(sum(a)*x)
  exit(0)

for i in range(n):
  if y<=x*(i+1):
    idx=i+1
    break
a.sort()
from math import ceil
for i in range(n):
  a[i]=ceil(a[i]/k)
# print(a)



if idx==-1:
  print(a[-1]*y)
  exit(0)


idx-=1
v=a[-1-idx]
a=[0 if int(aa)-v<0 else int(aa)-v for aa in a]
# print(a)
print(sum(a)*x+v*y)


0