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