이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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... |