답안 #894751

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
894751 2023-12-28T21:31:32 Z ___ Guess the number (BOI20_guess) C++14
0 / 100
0 ms 344 KB
#include <iostream>

using namespace std;

int main() 
{
	int n;
	cin>>n;
	int l=0,r=n+1;
	while(1)
	{
		long int m=(r+l)/2,x;
		cout<<"? "<<m<<"/n";
		cin>>x;
		if(x==1)
		{
			l=m;
		}
		else if(x==0)
		{
			cout<<"= "<<m;
			break;
		}
		else
		{
			r=m;
		}
	}
	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 0 ms 344 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 0 ms 344 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -