답안 #231093

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
231093 2020-05-12T16:46:49 Z muhammad_hokimiyon Hotter Colder (IOI10_hottercolder) C++14
0 / 100
771 ms 136424 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 + 1 );
        if( y2 == -1 || (y2 == 0 && (l > 1 || r < nn)) ){
            r = m;
            continue;
        }
        int y1 = Guess( m );
        if( y1 == -1 )l = m + 1;
        else 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 Incorrect 44 ms 14200 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 44 ms 14200 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 48 ms 14200 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 771 ms 136424 KB Output isn't correct - alpha = 0.000000000000