# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
580414 | alireza_kaviani | 저울 (IOI15_scales) | C++17 | 1 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
#include <bits/stdc++.h>
void init(int T) {
}
void Sort3(int &A , int &B , int &C){
int x = A , y = B , z = C;
int res = getMedian(x , y , z);
if(res == x){
A = z; B = x; C = y;
}
if(res == y){
A = x; B = y; C = z;
}
if(res == z){
A = x; B = z; C = y;
}
}
void orderCoins() {
int ax = getLightest(1 , 2 , 3);
int az = getHeaviest(1 , 2 , 3);
int ay = 1 + 2 + 3 - ax - az;
int bx = getLightest(4 , 5 , 6);
int bz = getHeaviest(4 , 5 , 6);
int by = 4 + 5 + 6 - bx - bz;
int W[6] = {ax , ay , bx , by , bz , az};
Sort3(W[0] , W[1] , W[2]);
Sort3(W[3] , W[4] , W[5]);
Sort3(W[1] , W[2] , W[3]);
Sort3(W[2] , W[3] , W[4]);
answer(W);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |