#include "grader.h"
#include<bits/stdc++.h>
using namespace std;
int HC(int N){
int left= 1,right = N;
int a;
while (left<=right){
int mid = left + (right-left)/2;
a=Guess(mid);
a=Guess(mid+1);
if (a==-1)right=mid;
else {
a=Guess(mid-1);
if (a==0)return mid;
else if (a==-1)
left = mid+1;
}
}
return left;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
10013 ms |
1228 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
10091 ms |
1228 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
10061 ms |
1228 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
10030 ms |
7992 KB |
Time limit exceeded |