Given the following formula, one can set operators ‘+’ or ‘-’ instead of each ‘?’, in order to obtain a given k
For example: to obtain k = 12, the expression to be used will be:
- 1 + 2 + 3 + 4 + 5 + 6 - 7 = 12
with n = 7
The first line is the number of test cases, followed by a blank line.
Each test case of the input contains an integer k (0 ≤ |k| ≤ 1000000000).
Each test case will be separated by a single line.
For each test case, your program should print the minimal possible n (1 ≤ n) to obtain k with the above formula.
Print a blank line between the outputs for two consecutive test cases.
範例輸入 1
2 12 -3646397
範例輸出 1
7 2701
Pro 專屬功能: 查看這題在歷屆 CPE 出現過幾次 — 升級以解鎖.