| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1331860 | uranhishig | Hotter Colder (IOI10_hottercolder) | C++17 | 385 ms | 62660 KiB |
#include "grader.h"
#include <bits/stdc++.h>
using namespace std;
int HC(int n){
int l = 1, r = n;
int ans = 1;
while(l + 1 < r){
int m = (l + r) / 2;
int v1 = Guess(m);
int v2 = Guess(m + 1);
if(v2 == 1){
ans = m + 1;
l = m + 1;
}
else{
ans = m;
r = m;
}
}
return ans;
} | # | 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... | ||||
