# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1100392 | akzytr | Coins (IOI17_coins) | C++17 | 0 ms | 0 KiB |
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"
std::vector<int> coin_flips(std::vector<int> b, int c) {
ve<int> turn;
if(c==0){
if(b[0] == b[1]){
turn.pb(63);
}
else{
turn.pb(0);
}
}
else{
if(b[0] == b[1]){
turn.pb(0);
}
else{
turn.pb(63);
}
}
return b;
}
int find_coin(std::vector<int> b) {
return b[0] != b[1];
}