답안 #227780

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
227780 2020-04-28T18:34:49 Z muhammad_hokimiyon Hotter Colder (IOI10_hottercolder) C++14
25 / 100
748 ms 8288 KB
#include<bits/stdc++.h>
#include "grader.h"

using namespace std;

int HC(int nn)
{
    int l = 1 , r = nn;
    if( nn == 2 ){
        int x = Guess(1);
        int y = Guess(2);
        if( y == -1 )return 1;
        return 2;
    }
    while( l < r ){
        int m = (l + r) / 2;
        int y2 = Guess( m );
        int y1 = Guess( m + 1 );
        if( y1 == 1 )l = m + 1;
        else if( y2 == 1 )r = m;
    }
    return l;
}

Compilation message

hottercolder.cpp: In function 'int HC(int)':
hottercolder.cpp:10:13: warning: unused variable 'x' [-Wunused-variable]
         int x = Guess(1);
             ^
# 결과 실행 시간 메모리 Grader output
1 Correct 30 ms 1280 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 29 ms 1152 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 29 ms 1280 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 748 ms 8288 KB Output isn't correct - alpha = 0.000000000000