답안 #423075

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
423075 2021-06-10T17:01:00 Z chirathnirodha Hotter Colder (IOI10_hottercolder) C++17
25 / 100
661 ms 8104 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

hottercolder.cpp: In function 'int HC(int)':
hottercolder.cpp:14:1: warning: control reaches end of non-void function [-Wreturn-type]
   14 | }
      | ^
# 결과 실행 시간 메모리 Grader output
1 Correct 25 ms 1228 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 25 ms 1288 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 25 ms 1288 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 661 ms 8104 KB Output isn't correct - alpha = 0.000000000000