# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
224444 | 2020-04-17T23:11:55 Z | jhnah917 | Hotter Colder (IOI10_hottercolder) | C++14 | 881 ms | 113104 KB |
#include "grader.h" #include <bits/stdc++.h> using namespace std; int HC(int N){ int l = 1, r = N; while(l < r){ int m = l + r >> 1; int a = Guess(m), b = Guess(min(m+2, r)); if(b == 1) l = min(m+2, r); else if(b == -1) r = m; else return m + 1; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 44 ms | 12408 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 44 ms | 12408 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 42 ms | 12408 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 881 ms | 113104 KB | Output isn't correct - alpha = 0.000000000000 |