4214.Jumping Jack

Time Limit: 1s Memory Limit: 256MB

Jack is working on his jumping skills recently. Currently he's located at point zero of the number line. He would like to get to the point x. In order to train, he has decided that he'll first jump by only one unit, and each subsequent jump will be exactly one longer than the previous one. He can go either left or right with each jump. He wonders how many jumps he needs to reach x.

Input Format(From the terminal/stdin)

The input data consists of only one integer x (-109 \le x \le 109).

Output Format(To the terminal/stdout)

Output the minimal number of jumps that Jack requires to reach x.

Sample Input 1

Copy
2
 \n

Sample Output 1

Copy
3
 \n

Sample Input 2

Copy
6
 \n

Sample Output 2

Copy
3
 \n

Sample Input 3

Copy
0
 \n

Sample Output 3

Copy
0
 \n

Submit

请先 登录

© 2025 FAQs