# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
317293 | 2020-10-29T10:38:06 Z | seedkin | Hotter Colder (IOI10_hottercolder) | C | 10000 ms | 116728 KB |
#include "grader.h" int HC(int N){ int low = 1; int high = N; int g; int h; while ( high - low <= 1 ) { g = Guess(low); h = Guess(high); if(h == 1) { low = (low + high) / 2; } else if (h == -1) { high = (low + high) / 2; } else { return (low + high) / 2; } } g = Guess(low); h = Guess(high); if(h == 1) { return high; } else if (h == -1) { return low; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 10011 ms | 3968 KB | Time limit exceeded |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 10095 ms | 3840 KB | Time limit exceeded |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 10013 ms | 3968 KB | Time limit exceeded |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 10015 ms | 116728 KB | Time limit exceeded |