-
Notifications
You must be signed in to change notification settings - Fork 14
/
10025.cpp
52 lines (49 loc) · 1.1 KB
/
10025.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <queue>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <cctype>
#include <string>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
typedef unsigned int uint;
typedef long long int64;
typedef unsigned long long uint64;
using namespace std;
int main(){
int test;
cin>>test;
while(test--){
int64 a, i, j, s=0;
cin>>a;
if(a<0)
a*=-1;
for(i=1;s<=a;i++)
s+=i;
while((s-a)%2){
s+=i;
i++;
}
cout<<i-1;
if(test > 0)
cout<<endl<<endl;
}
return 0;
}