# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
41062 | 2018-02-12T09:00:45 Z | meylady | Hotter Colder (IOI10_hottercolder) | C++14 | 805 ms | 8196 KB |
#include "grader.h" int HC(int N){ int left = 1; int right = N; int mid = (left + right) / 2; while (left < right) { int query1 = Guess(left); int query2 = Guess(right); mid = (left + right) / 2; if (query2 == 0)return mid; if (query2 == 1) {//hotter left = mid+1; } else {//colder right = mid; } } return left; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 35 ms | 1272 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 28 ms | 1272 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 33 ms | 1272 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 805 ms | 8196 KB | Output isn't correct - alpha = 0.000000000000 |