# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
365130 | 2021-02-10T23:11:07 Z | MilosMilutinovic | Hotter Colder (IOI10_hottercolder) | C++14 | 718 ms | 31724 KB |
#include "grader.h" #include <bits/stdc++.h> using namespace std; int Guess(int G); int HC(int n){ int bot = 1, top = n; while (bot <= top) { int mid = bot + top >> 1; int x = Guess(bot), y = Guess(top); if (y == 0) { return mid; } if (y < 0) { top = mid - 1; } else { bot = mid + 1; } } return bot; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 28 ms | 4204 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 28 ms | 4204 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 28 ms | 4204 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 718 ms | 31724 KB | Output isn't correct - alpha = 0.000000000000 |