Shopping Fever

아직 제출이 없습니다시간 제한1초메모리 제한512 MB

문제

Heidi is in a big store. She would like to purchase nn items.

Today is her lucky day. The store runs a special sale: on every purchase, the customer receives one of the following two promotions:

  1. When at least 33 items are bought together, the cheapest one is free.
  2. When fewer than 33 items are bought together, the customer gets a qq\\% discount on the purchase.

Heidi would like to buy all nn items on her shopping list, each exactly once. She can make an arbitrary number of purchases. For each purchase she'll make, the appropriate promotion will apply.

What is the minimum total price she has to pay to buy all nn items?

입력

The first line contains two single space-separated integers nn (1n100,0001 \le n \le 100\\,000) and qq (0q1000 \le q \le 100) — the number of items Heidi wants to buy and the percentage discount she gains for purchases of fewer than three items.

The following line contains nn single space separated integers p_1,,p_np\_1, \dots, p\_n — the prices of the goods (100p_i100,000100 \le p\_i \le 100\\,000, 1in1 \le i \le n).

Additionally, it is guaranteed that each p_ip\_i will always be divisible by 100100. Hence, the discounted price of each purchase will always be an integer.

출력

Output a single integer — the minimum total price Heidi has to pay in order to buy all nn items.

힌트

First, Heidi can buy the three items that cost 200200 in a single transaction for 400400 (she gets one of them for free). Then she can purchase the three items that cost 300300 for 600600 (again, one is free). Finally, she can purchase the last remaining item (with cost 100100) with a 1010\\% discount.

In the second example test, if Heidi buys all three items in a single transaction, she receives discount of 100100. However, if she buys each item individually, her discount will be (1000+500+100) 20/100=320(1000 + 500 + 100) \cdot 20 / 100 = 320.