답안 #423063

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
423063 2021-06-10T16:54:25 Z chirathnirodha Hotter Colder (IOI10_hottercolder) C++17
25 / 100
691 ms 23140 KB
#include "grader.h"
#include<bits/stdc++.h>
using namespace std;
 
int HC(int N){
   int l=1,r=N;
   if(N==1)return 1;
   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 r=(l+r)/2;
   }
}

Compilation message

hottercolder.cpp: In function 'int HC(int)':
hottercolder.cpp:15:1: warning: control reaches end of non-void function [-Wreturn-type]
   15 | }
      | ^
# 결과 실행 시간 메모리 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 1268 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 691 ms 23140 KB Output isn't correct - alpha = 0.000000000000