답안 #754505

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
754505 2023-06-07T22:18:51 Z ValiAntonie Hotter Colder (IOI10_hottercolder) C++14
0 / 100
554 ms 132560 KB
#include "grader.h"
#include<bits/stdc++.h>
using namespace std;
 
 
int HC(int n){
    int st = 1;
    int dr = n;
    Guess(1);
    int x = Guess(n);
    int prev = -1;
    while(st <= dr){
        int mij = (st + dr) >> 1;
        if(x == 0)
            return mij;
        else if(x > 0){
            st = mij + 1;
            if(prev == 0){
            x = Guess(st);
            x = -x;
            }
            else{
            Guess(st);
            x = Guess(dr);
            }
            prev = 1;
        }
        else{
            dr = mij;
            Guess(dr);
            x = Guess(st);
            x = -x;
            prev = 0;
        }
    }
    return st;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 32 ms 10520 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 29 ms 10636 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 30 ms 10648 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 554 ms 132560 KB Output isn't correct - alpha = 0.000000000000