이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
using namespace std;
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0);
int t;
cin >> t;
for (int i = 0; i < t; i++) {
int n, k;
cin >> n >> k;
if (k == 1) {
int klasy[n];
int suma = 0;
for (int x = 0; x< n; x++) {
cin >> klasy[x];
suma += klasy[x];
}
if (suma % 2 == 0) {
cout << "0";
}
else {
cout << "1";
}
}
else {
int log = 0;
while ((1 << log) < k) {
log++;
}
if ((1 << log) > k) {
log--;
}
int klasy[n];
long long potegi[n][log + 1];
for (int x = 0; x < n; x++) {
cin >> klasy[x];
for (int l = 0; l < log + 1; l++) {
potegi[x][l] = klasy[x]/(1 << l);
}
}
long long suma;
bool czy = true;
for (int l = 0; l < log + 1; l++) {
suma = 0;
for (int x = 0; x < n; x++) {
suma += potegi[x][l];
}
if (suma % 2 == 1) {
cout << "1";
czy = false;
break;
}
}
if (czy) {
cout << "0";
}
}
}
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... |