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>
#include "coins.h"
using namespace std;
using ll = long long;
#define pb push_back
#define dbg(x) cerr << #x << " " << x << "\n"
int find_coin (vector <int> b);
vector <int> coin_flips (vector <int> b, int c) {
vector <int> flips;
int x = find_coin (b);
flips.pb (x ^ c);
return flips;
}
int find_coin (vector <int> b) {
int x = 0;
for (int i = 0; i < 64; i++)
if (b[i])
x ^= i;
return x;
}
/**int main () {
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... |