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 "coins.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> coin_flips(vector<int> b, int c){
vector<int> flips;
for(int i=0; i<6; i++){
if(b[i] != (bool) (c & (1 << i))){
flips.push_back(i);
}
}
flips.push_back(6);
return flips;
}
int find_coin(vector<int> b){
int coin = 0;
for(int i=0; i<6; i++){
coin += b[i] * (1 << i);
}
return coin;
}
# | 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... |