結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 31 ms
11,008 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 WA -
testcase_10 AC 139 ms
19,816 KB
testcase_11 AC 137 ms
19,532 KB
testcase_12 AC 97 ms
16,580 KB
testcase_13 AC 143 ms
18,508 KB
testcase_14 AC 146 ms
20,256 KB
testcase_15 AC 163 ms
21,664 KB
testcase_16 AC 162 ms
21,656 KB
testcase_17 AC 200 ms
21,660 KB
testcase_18 AC 205 ms
21,660 KB
testcase_19 AC 185 ms
21,660 KB
testcase_20 WA -
testcase_21 AC 145 ms
21,680 KB
testcase_22 WA -
testcase_23 AC 163 ms
21,680 KB
testcase_24 AC 168 ms
21,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 sum(a)<y:
  print(sum(a)*x)
  exit(0)

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