| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1082728 | Bors | Hotter Colder (IOI10_hottercolder) | C++17 | 479 ms | 132180 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"
int HC(int n){
int l=1, r=n;
while(l<r){
int ac=(l+r)/2;
Guess(ac);
int m=(ac+1+r)/2;
int k=Guess(m);
if(k==0){
return (ac+m)/2;
}
if(k==1){
l=ac+1;
}
if(k==-1){
r=ac;
}
}
return l;
}
| # | 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... | ||||
