#include "grader.h"
#include<bits/stdc++.h>
using namespace std;
int HC(int n){
int st = 1;
int dr = n;
while(st <= dr){
int mij = (st + dr) / 2;
Guess(st);
int x = Guess(dr);
if(x == 0){
return mij;
}
else if(x > 0){
st = mij + 1;
}
else
dr = mij - 1;
}
return st;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
23 ms |
4052 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
25 ms |
4080 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
26 ms |
3992 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
541 ms |
31700 KB |
Output isn't correct - alpha = 0.000000000000 |