Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 652 Bytes

question-sum-of-three-values.md

File metadata and controls

28 lines (17 loc) · 652 Bytes

Time limit: 1.00 s    Memory limit: 512 MB

You are given an array of $n$ integers, and your task is to find three values (at distinct positions) whose sum is $x$.

Input

The first input line has two integers $n$ and $x$: the array size and the target sum.

The second line has n integers $a_1,a_2,\dots,a_n$: the array values.

Output

Print three integers: the positions of the values. If there are several solutions, you may print any of them. If there are no solutions, print IMPOSSIBLE.

Constraints

  • $1 \le n \le 5000$
  • $1 \le x,a_i \le 10^9$

Example

Input:
4 8
2 7 5 1

Output:
1 3 4