This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
ll t,n,k,a;
cin >> t;
while(t--){
cin >> n >> k;
if (n==1){
cin >> a;
ll pot=1;
while(a%2==0){
a/=2;
pot*=2;
}
ll prog;
if (a==1) prog=pot/2+1;
else prog = pot-1;
if (k<=prog) cout << 0;
else cout << 1;
continue;
}
ll suma=0;
for (int x=0;x<n;x++){
cin >> a;
suma+=a;
}
cout << suma%2LL;
}
cout << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |