| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 222290 | mathking1021 | Hotter Colder (IOI10_hottercolder) | C++11 | 708 ms | 24568 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 lt = 1, rt = N;
while(lt < rt)
{
Guess(lt);
int t = Guess(rt);
if(t == 0) return (lt + rt) / 2;
if(t == 1)
{
lt = (lt + rt + 2) / 2;
}
else
{
rt = (lt + rt - 1) / 2;
}
}
return lt;
}
| # | 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... | ||||
