# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
137051 | 2019-07-27T02:59:53 Z | StevenH | Hotter Colder (IOI10_hottercolder) | C++14 | 712 ms | 8288 KB |
#include "grader.h" #include <cstdio> int HC(int N){ if(N==1)return 1; int left=1,right=N; bool last = 0; Guess(left); while(left+1 < right) { int res; int mid=(left+right)/2; if(last==0) { res = Guess(right); if(res == -1) { if((left+right)%2==0)right = mid - 1; else right = mid; Guess(right); last = 1; } else if(res == 1) { left = mid+1; last = 1; //next is left } else if(res == 0) { return mid; } } else { res = Guess(left); if(res == -1) { left = mid+1; Guess(left); last = 0; } else if(res == 1) { if((left+right)%2==0)right = mid - 1; else right = mid; last = 0; //next is left } else if(res == 0) { return mid; } } } if(left == right)return left; if(right == left+1) { int res; if(last == 0) { res = Guess(right); if(res == 1)return right; else return left; } else if(last == 1) { res = Guess(left); if(res == 1)return left; else return right; } } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 27 ms | 1272 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 34 ms | 1272 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 27 ms | 1272 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 712 ms | 8288 KB | Output is partially correct - alpha = 0.142857142857 |