# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
224454 | 2020-04-17T23:49:38 Z | jhnah917 | Hotter Colder (IOI10_hottercolder) | C++14 | 737 ms | 31608 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(l), b = Guess(r); if(b == 1) l = m + 1; else if(b == -1) r = m - 1; else return m; } return l; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 30 ms | 4096 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 30 ms | 4224 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 31 ms | 4216 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 737 ms | 31608 KB | Output isn't correct - alpha = 0.000000000000 |