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;
vector <int> coin_flips(vector <int> b, int c) {
vector <int> flips(1);
if((b[0] == c and b[1] == c) or (b[0] == !c and b[1] == c)) {
flips.push_back(0);
}
else {
flips.push_back(1);
}
return flips;
}
int find_coin(vector <int> b) {
if(b[1] == 0) {
return 0;
}
return 1;
}
# | 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... |