#include "grader.h"
#include <bits/stdc++.h>
using namespace std;
int HC(int N){
if ( N == 1 ) {
return 1;
}
int l = 1, r = N;
while ( r - l > 1 ) {
int md = (l + r) / 2;
Guess((l + md) / 2);
int y = Guess((md + r) / 2);
if ( y == 1 ) {
l = md;
}
else if ( y == -1 ) {
r = md;
}
else {
return md;
}
}
return l;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
28 ms |
1408 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
29 ms |
1408 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
29 ms |
1408 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
794 ms |
8312 KB |
Output isn't correct - alpha = 0.000000000000 |