제출 #401987

#제출 시각아이디문제언어결과실행 시간메모리
401987ja_kingy저울 (IOI15_scales)C++14
45.45 / 100
1 ms300 KiB
#include "scales.h" #include <bits/stdc++.h> using namespace std; void init(int T) { /* ... */ } void orderCoins() { /* ... */ int W[] = {1, 2, 3, 4, 5, 6}; for (int i = 5; i >= 2; --i) { for (int j = 2; j <= i; j=min(i,j+2)) { int res = getHeaviest(W[j-2],W[j-1],W[j]); for (int k = j-2; k < j; k++) if (W[k] == res) swap(W[k],W[j]); if (j == i) break; } } if (getLightest(W[0], W[1], W[2]) == W[1]) swap(W[1], W[0]); answer(W); }

컴파일 시 표준 에러 (stderr) 메시지

scales.cpp: In function 'void init(int)':
scales.cpp:4:15: warning: unused parameter 'T' [-Wunused-parameter]
    4 | void init(int T) {
      |           ~~~~^
#Verdict Execution timeMemoryGrader output
Fetching results...