Hide

Problem J
Candy Factory

The International Consortium of Popular Candies (ICPC) is hosting a prestigious candy festival for candy lovers worldwide. The consortium has asked $n$ candy factories to produce candies for the event. Each of the $n$ factories has produced some quantity of a unique type of candy.

Packs of candies will be given to the participants at the festival. A candy pack must consist of exactly $k$ candies of different types. Two candy packs may contain different sets of $k$ candies.

There may be unavoidably some leftover candies given the quantities of candies that the $n$ factories have already produced. The ICPC does not want to waste any of the candies produced, and is willing to create extra packs of candy to ensure this. The ICPC can order any of the $n$ factories to produce additional candies. What is the minimum quantity of additional candies that must be ordered, so that there will be no leftover candies after packing?

Input

The first line of input has two integers $n$ and $k$ ($1 \leq k \leq n \leq 5\, 000$).

The next $n$ lines each have a single integer between $1$ and $10^9$. The integer on the $i^{\text {th}}$ line is the quantity of candies that the $i^{\text {th}}$ factory has produced.

Output

Output a single integer, the minimum quantity of additional candies that must be ordered.

Sample Input 1 Sample Output 1
4 3
1
3
4
1
3

Please log in to submit a solution to this problem

Log in