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