forked from ek001/cpp-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodechefAda.cpp
More file actions
121 lines (101 loc) · 2 KB
/
CodechefAda.cpp
File metadata and controls
121 lines (101 loc) · 2 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
///////// ///// //// ///
// // // // // // //
////// // // // // //
// // /// // // //
//////// // // // //
*/
#include<bits/stdc++.h>
#include<assert.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;
#define Fast ios_base::sync_with_stdio(false); cin.tie(NULL);cout.tie(0);
#define fo(i,s,n) for(int i=s;i<n;i++)
#define mod 1000000007
#define umap unordered_map
#define pb(x) push_back(x)
#define all(x) (x).begin(), (x).end()
#define lb() lower_bound()
#define ub() upper_bound()
#define PI 3.14159265
#define S second
#define F first
//fill(all(vec), 1);to fill vector with a number
//if (S.count(key)) returns 1 if set or map contain key else return 0
ll nCr(ll n,ll r)
{
r = min(r,n-r);
if(r<0)
return 0;
if(r == 0)
return 1;
ll ans = 1;
for(ll i = 1;i<=r;i++)
{
ans = ans*(n-i+1)/i;
}
return ans;
}
ll logn(int n, int r)
{
return (n > r - 1) ? 1 + logn(n / r, r) : 0;
}
ll power(ll a,ll b) {
if(b == 1) return a;
if(b == 0) return 1;
ll m1 = power(a,b/2);
if(b%2) return m1*m1*a;
return m1*m1;
}
bool isprime(ll a)
{
if(a<=1)
return false;
if(a==2||a==3)
return true;
if(a%2==0||a%3==0)
return false;
for(ll i=5;i*i<=a;i=i+6)
{
if(a%i==0||a%(i+2)==0)
return false;
}
return true;
}
/*********************//*********************///*********************///*********************//
ll t;
void solve()
{
ll a,k;
cin>>a>>k;
// ll a , k; cin>>a>>k;
if(k>=a)
{
cout<<k-a<<endl;
}
else
{
if((a+k)%2==1)
cout<<1<<endl;
else
cout<<0<<endl;
}
return;
}
int main()
{
Fast
/*
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
*/
cin>>t;
for(ll i=1;i<=t;i++)
{
solve();
}
return 0;
}