# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
861673 | cirnepq | Coins (IOI17_coins) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "coins.h"
std::vector<int> coin_flips(std::vector<int> b, int c) {
std::vector<int> flips(1);
if (c==0) {
if (b[0]==1) flips[0]=63;
else flips[0]=1;
}
else {
if (b[0]==0) flips[0]=63;
else flips0]=1;
}
return flips;
}
int find_coin(std::vector<int> b) {
if (b[0] == 1){
return 0;
}
return 1;
}