#include "grader.h"
#include<bits/stdc++.h>
using namespace std;
int HC(int n){
int st = 1;
int dr = n;
Guess(1);
int x = Guess(n);
int prev = -1;
while(st <= dr){
int mij = (st + dr) >> 1;
if(x == 0)
return mij;
else if(x > 0){
st = mij + 1;
if(prev == 0){
x = Guess(st);
x = -x;
}
else{
x = Guess(dr);
}
prev = 1;
}
else{
dr = mij;
Guess(st);
x = Guess(dr);
prev = 0;
}
}
return st;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
28 ms |
14156 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
28 ms |
14216 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
28 ms |
14240 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
446 ms |
136648 KB |
Output isn't correct - alpha = 0.000000000000 |