# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
56133 | 2018-07-10T05:25:51 Z | leejseo | Hotter Colder (IOI10_hottercolder) | C++ | 800 ms | 8184 KB |
#include "grader.h" #include <stdio.h> #include <algorithm> int HC(int N){ int lo = 1, hi = N; while (lo < hi){ int left = Guess(lo); int right = Guess(hi); int mid = (lo + hi) >> 1; if (right == 0) return mid; if (right == 1) lo = mid+1; else hi = (lo + hi - 1) >> 1; } return lo; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 35 ms | 1272 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 27 ms | 1272 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 28 ms | 1272 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 800 ms | 8184 KB | Output is partially correct - alpha = 0.068965517241 |