# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
385175 | victoriad | Coins (IOI17_coins) | C++14 | 3 ms | 1200 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "coins.h"
using namespace std;
vector<int> coin_flips(vector<int> b, int c) {
vector<int>co;
if(c>=64){
if(b[6]==0)co.push_back(7);
c-=64;
}
else {
if(b[6]==1)co.push_back(7);
}
if(c>=32){
if(b[5]==0)co.push_back(6);
c-=32;
}
else {
if(b[5]==1)co.push_back(7);
}
if(c>=16){
if(b[4]==0)co.push_back(7);
c-=16;
}
else {
if(b[4]==1)co.push_back(7);
}
if(c>=8){
if(b[3]==0)co.push_back(7);
c-=8;
}
else {
if(b[3]==1)co.push_back(7);
}
if(c>=4){
if(b[2]==0)co.push_back(7);
c-=4;
}
else {
if(b[2]==1)co.push_back(7);
}
if(c>=2){
if(b[1]==0)co.push_back(7);
c-=2;
}
else {
if(b[1]==1)co.push_back(7);
}
if(c>=1){
if(b[0]==0)co.push_back(7);
c-=1;
}
else {
if(b[0]==1)co.push_back(7);
}
vector<int> flips(co.size());
for(int i=0;i<co.size();i++){
flips[i]=co[i];
}
return flips;
}
int find_coin(vector<int> b) {
int x=0;
if (b[0] == 1) {
x=1;
}
if (b[1] == 1) {
x+=2;
}
if (b[2] == 1) {
x+=4;
}
if (b[3] == 1) {
x+=8;
}
if (b[4] == 1) {
x+=16;
}
if (b[5] == 1) {
x+=32;
}
if (b[6] == 1) {
x+=64;
}
return x;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |