Young Mirko has been buying voodoo dolls lately. Considering that he is very interested in the cheapest purchase possible, he has been tracking the prices of voodoo dolls each day. His price list consists of doll prices in the last
Mirko thinks he has noticed a connection between the average doll price in a sequence of consecutive days and the price on the following day. He wants to test his hunch and is puzzled by a very interesting question: "For a given
Two consecutive subsequences are considered different if their beginnings or ends are different.
Input Specification
The first line of input contains the integer
The second line of input contains
The third line of input contains an integer
In test cases worth 30% of points the sequence length
Output Specification
The first and only line of output must contain the answer to Mirko's question for a given
Sample Input 1
3
1 2 3
3
Sample Output 1
1
Explanation for Sample Output 1
The only subsequence that has an average greater than or equal to
Sample Input 2
3
1 3 2
2
Sample Output 2
5
Explanation for Sample Output 2
The subsequences that have an average greater than or equal to
Sample Input 3
3
1 3 2
3
Sample Output 3
1
Comments