#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{
Guess(st);
x = Guess(dr);
}
prev = 1;
}
else{
dr = mij;
Guess(dr);
x = Guess(st);
x = -x;
prev = 0;
}
}
return st;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
30 ms |
10580 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
28 ms |
10640 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
28 ms |
10580 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
546 ms |
132524 KB |
Output isn't correct - alpha = 0.000000000000 |