-
Notifications
You must be signed in to change notification settings - Fork 0
/
cc_118d.cpp
59 lines (51 loc) · 995 Bytes
/
cc_118d.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
53
54
55
56
57
58
59
//YashS
#include <bits/stdc++.h>
using namespace std;
#define test int T;cin>>T;while(T--)
#define int long long
#define pb push_back
#define all(x) (x).begin(),(x).end()
#define rep(i,a,b) for(int i=a;i<b;i++)
#define pVec(v) for(auto e:v)cout<<e<<" ";cout<<"\n"
int MOD = 1e9 + 7;
int N = 1e5 + 7;
void init_code() {
#ifndef ONLINE_JUDGE
freopen("inputf.txt", "r", stdin);
freopen("outputf.txt", "w", stdout);
#endif // ONLINE_JUDGE
}
void yash()
{
int n;
cin >> n;
vector<int> temp;
for (int i = 32; i >= 0; --i) {
if (n & (1 << i)) {
temp.push_back(i);
break;
}
}
int ans = 0, flag = 0;
for (int i = temp[0] - 1; i >= 0; i--) {
if ((n & (1 << i)) == 0) {
if (flag) {
ans++;
}
} else {
flag = 1;
}
}
long long RES = pow(2ll, ans);
cout << RES << "\n";
}
signed main()
{
init_code();
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
test
yash();
return 0;
}