# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
423074 | 2021-06-10T16:59:10 Z | chirathnirodha | Hotter Colder (IOI10_hottercolder) | C++17 | 680 ms | 8096 KB |
#include "grader.h" #include<bits/stdc++.h> using namespace std; int HC(int N){ int l=1,r=N; while(l!=r){ Guess(l); int x=Guess(r); if(x==0)return (l+r)/2; else if(x==1)l=(l+r+1)/2; else if(x==-1)r=(l+r-1)/2; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 24 ms | 1328 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 25 ms | 1292 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 26 ms | 1292 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 680 ms | 8096 KB | Output isn't correct - alpha = 0.000000000000 |