#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
int Guess (int x);
int HC(int n){
int l = 1,r = n;
// bruh.
while(l != r){
Guess(l);
int try_ = Guess(r);
if(try_ == -1) r = (l + r - 1) / 2;
else if(try_ == 1) l = (l + r + 1) / 2;
else return (l + r) / 2;
}
return l;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
21 ms |
1300 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
21 ms |
1300 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
20 ms |
1236 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
575 ms |
8108 KB |
Output isn't correct - alpha = 0.000000000000 |