# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
754532 | 2023-06-07T23:17:24 Z | ValiAntonie | Hotter Colder (IOI10_hottercolder) | C++14 | 509 ms | 8104 KB |
#include "grader.h" #include<bits/stdc++.h> using namespace std; int Guess (int x); int HC(int N){ int st=1,dr=N; Guess(st); int a = Guess(dr); int prev = -1; while(st!=dr){ int mij = (st+ dr) >> 1; if(a==-1){ dr= mij; if(st != dr){ Guess(st); a = Guess(dr); } } else if(a==1){//close to l st = mij + 1; if(st != dr){ Guess(st); a = Guess(dr); } } else return mij; } return st; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 20 ms | 1288 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 19 ms | 1296 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 19 ms | 1296 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 509 ms | 8104 KB | Output isn't correct - alpha = 0.000000000000 |