#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
int HC(int N) {
int l = 1, r = N;
while (l < r) {
int mid = (l + r) / 2;
Guess(mid);
if (Guess(mid + 1) == 1) l = mid + 1;
else r = mid;
}
return l;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
18 ms |
1236 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
15 ms |
1308 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
15 ms |
1236 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
466 ms |
12368 KB |
Output isn't correct - alpha = 0.000000000000 |