| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1355874 | FaresSTH | Hotter Colder (IOI10_hottercolder) | C++20 | 10093 ms | 8236 KiB |
#include"bits/stdc++.h"
#include"grader.h"
using namespace std;
using ll=long long;
#define S second
#define F first
int HC(int n){
int l=1,r=n,pr=1;
while(l<r){
Guess(l);
int m=l+r,gs=Guess(r);
if(gs==0)return m/2;
else if(gs==1)l=m/2+1;
else{
if(m%2)r=m/2;
else l=m/2-1;
}
}
return r;
}
| # | Result | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Result | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Result | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Result | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
