# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1074247 | beaconmc | Hotter Colder (IOI10_hottercolder) | C++14 | 2762 ms | 21720 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "grader.h"
#include <bits/stdc++.h>
typedef long long ll;
#define FOR(i,x,y) for(ll i=x; i<y; i++)
#define FORNEG(i,x,y) for(lli = x; i>y; i--)
using namespace std;
ll n;
int guess(ll a){
if (a==0) return -1;
if (a==n+1) return -1;
return Guess(a);
}
int solve(int a, int b){
if (a==b) return a;
ll mid = (a+b)/2;
ll midval = guess(mid);
ll right = guess(mid+1);
ll left = guess(mid-1);
if (left == -1 && right==0 || left==-1 && right==-1){
return mid;
}
if (left == -1){
return solve(mid+1, b);
}else{
return solve(a, mid);
}
}
int HC(int N){
n = N;
cout << "FUCK" << endl;
ll ans = solve(1,N);
cout << ans << endl;
return ans;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |