#abc113b. [abc113_b]Palace

[abc113_b]Palace

Problem Statement

A country decides to build a palace.

In this country, the average temperature of a point at an elevation of xx meters is Txtimes0.006T-x \\times 0.006 degrees Celsius.

There are NN places proposed for the place. The elevation of Place ii is HiH_i meters.

Among them, Princess Joisino orders you to select the place whose average temperature is the closest to AA degrees Celsius, and build the palace there.

Print the index of the place where the palace should be built.

It is guaranteed that the solution is unique.

Constraints

  • 1leqNleq10001 \\leq N \\leq 1000
  • 0leqTleq500 \\leq T \\leq 50
  • \-60leqAleqT\-60 \\leq A \\leq T
  • 0leqHileq1050 \\leq H_i \\leq 10^5
  • All values in input are integers.
  • The solution is unique.

Input

Input is given from Standard Input in the following format:

NN TT AA H1H_1 H2H_2 ...... HNH_N

Output

Print the index of the place where the palace should be built.


Sample Input 1

2
12 5
1000 2000

Sample Output 1

1
  • The average temperature of Place 11 is 121000times0.006=612-1000 \\times 0.006=6 degrees Celsius.
  • The average temperature of Place 22 is 122000times0.006=012-2000 \\times 0.006=0 degrees Celsius.

Thus, the palace should be built at Place 11.


Sample Input 2

3
21 -11
81234 94124 52141

Sample Output 2

3