답안 #544343

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
544343 2022-04-01T18:47:20 Z ValiAntonie Hotter Colder (IOI10_hottercolder) C++14
50 / 100
564 ms 8104 KB
#include "grader.h"
#include<bits/stdc++.h>
using namespace std;

int Guess (int x);

int HC(int N){
int l=1,r=N;
while(l!=r){
	Guess(l);
	int a = Guess(r);
	if(a==-1)
		r = (l+r-1)/2;
	else if(a==1)//close to l
		l = (l+r+1)/2;
	else return (l+r)/2;
}
return l;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 20 ms 1236 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 21 ms 1300 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 20 ms 1300 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 564 ms 8104 KB Output isn't correct - alpha = 0.000000000000