# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
650195 | ojoConmigo | 저울 (IOI15_scales) | C++17 | 1 ms | 304 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
#include <iostream>
using namespace std;
void init(int T) {
/* ... */
}
void orderCoins() {
/* ... */
int W[6];
int q = getLightest(1,2,3);
q = getLightest(q,4,5);
if(q != 5)q = getLightest(q,q+1,6);
else q = getLightest(q,q-1,6);
W[0] = q;
int k[3];
int t=0;
for(int i=1; i<=6; i++){
if(i != W[0]){
k[t++] = i;
}
if(t == 3){
q = getLightest(k[0],k[1],k[2]);
t = 1;
k[0] = q;
}
if(i == 6) W[1] = q;
}
t=0;
for(int i=1; i<=6; i++){
if(i != W[0] && i!=W[1]){
k[t++] = i;
}
if(t == 3){
q = getLightest(k[0],k[1],k[2]);
t = 2;
k[0] = q;
if(k[1] == q){
k[1] = k[2];
}
}
if(i == 6) W[2] = q;
}
t=0;
for(int i=1; i<=6; i++){
if(i != W[0] && i != W[1] && i != W[2]){
k[t++] = i;
}
}
W[3] = getLightest(k[0],k[1],k[2]);
W[4] = getMedian(k[0],k[1],k[2]);
for(int i=1; i<=6; i++){
bool b = true;
for(int j=0; j<5; j++){
if(i == W[j]){
b = false;
}
}
if(b){
W[5] = i;
break;
}
}
answer(W);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |