#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);
while(st <= dr){
int mij = (st + dr) / 2;
if(x == 0)
return mij;
else if(x > 0){
st = mij + 1;
Guess(st);
x = Guess(dr);
}
else{
dr = mij;
Guess(st);
x = Guess(dr);
}
}
return st;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
19 ms |
1236 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
20 ms |
1296 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
19 ms |
1300 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
505 ms |
8104 KB |
Output isn't correct - alpha = 0.000000000000 |