Submission #780940

#TimeUsernameProblemLanguageResultExecution timeMemory
780940AndreyFootball (info1cup20_football)C++14
100 / 100
49 ms5236 KiB
#include <bits/stdc++.h>
using namespace std;

long long n;

bool calc(vector<long long> haha, long long k) {
    long long sb = 0;
    for(long long i = 0; i < n; i++) {
        sb+=haha[i];
    }
    if(sb%2 == 1) {
        return 1;
    }
    if(k == 1) {
        return 0;
    }
    for(long long i = 0; i < n; i++) {
        haha[i]/=2;
    }
    return calc(haha,k/2);
}

void solve() {
    long long k;
    cin >> n >> k;
    vector<long long> haha(n);
    for(long long i = 0; i < n; i++) {
        cin >> haha[i];
    }
    if(calc(haha,k)) {
        cout << 1;
    }
    else {
        cout << 0;
    }
}

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    long long t;
    cin >> t;
    while(t--) {
        solve();
    }
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...