#include "grader.h"
#include<bits/stdc++.h>
using namespace std;
int Guess (int x);
int HC(int N){
int st=1,dr=N;
Guess(st);
int a = Guess(dr);
while(st!=dr){
int mij = (st+ dr) >> 1;
if(a==-1){
dr= mij;
Guess(st);
a = Guess(dr);
if(a == 0)
return mij;
}
else if(a==1){//close to l
st = mij + 1;
Guess(st);
a = Guess(dr);
if(a == 0)
return mij;
}
else return mij;
}
return st;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
31 ms |
11000 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
31 ms |
10940 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
31 ms |
11004 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
612 ms |
86260 KB |
Output isn't correct - alpha = 0.000000000000 |