6772.Sum of Two Values

Time Limit: 1s Memory Limit: 512MB

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

Input Format(From the terminal/stdin)

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.

  • $1 \le n \le 2 \cdot 10^5$
  • $1 \le x,a_i \le 10^9$

Output Format(To the terminal/stdout)

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

Sample Input

Copy
4 8
2 7 5 1
 · \n
 · · · \n

Sample Output special judge

Copy
2 4
 · \n
Source: CSES, Sorting and Searching, 1640

Submit

请先 登录

© 2025 FAQs