#ABC113B. [ABC113B] Palace

[ABC113B] Palace

Score: 200200 points

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 Tx×0.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

  • 1N10001 \leq N \leq 1000
  • 0T500 \leq T \leq 50
  • 60AT-60 \leq A \leq T
  • 0Hi1050 \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.

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

Thus, the palace should be built at Place 11.

3
21 -11
81234 94124 52141
3