#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
typedef long long ll;
int HC(int n) {
int low = 1, high = n;
while (low < high) {
int mid = (low + high) / 2;
Guess(low);
int verdict = Guess(high);
if (verdict == 0) {
return mid;
} else if (verdict == 1) {
low = mid + 1;
} else {
high = mid;
}
}
return low;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
22 ms |
1240 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
23 ms |
1236 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
23 ms |
1300 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
650 ms |
24340 KB |
Output isn't correct - alpha = 0.000000000000 |