結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 WA -
testcase_10 AC 139 ms
19,944 KB
testcase_11 AC 137 ms
19,396 KB
testcase_12 AC 93 ms
16,572 KB
testcase_13 AC 141 ms
18,504 KB
testcase_14 AC 140 ms
20,248 KB
testcase_15 AC 152 ms
21,528 KB
testcase_16 AC 148 ms
21,524 KB
testcase_17 AC 183 ms
21,528 KB
testcase_18 AC 191 ms
21,652 KB
testcase_19 AC 169 ms
21,648 KB
testcase_20 WA -
testcase_21 AC 135 ms
21,672 KB
testcase_22 WA -
testcase_23 AC 147 ms
21,672 KB
testcase_24 AC 150 ms
21,400 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)

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