답안 #498692

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
498692 2021-12-26T07:31:42 Z devomega07 Colors (BOI20_colors) C++14
0 / 100
0 ms 200 KB
#include "bits/stdc++.h"
#define all(x) x.begin(),x.end()
using namespace std;
typedef long long l;
void output(int num){
	cout << "? " << num << endl;
	return;
}
void input(bool &ok){
	int num;
	cin >> num;
	ok = bool(num);
	return;
}
int main()
{
	int n, num; cin >> n;
	int high=n, low=1, llast=INT_MIN;
	cout << "? 0" << endl;
	cin>>num;
	while(1){
	 	int mid = (high+low)>>1;
		output(mid);
		bool ok; input(ok);
		if(high==low&&!ok) {cout << "= " << llast << endl; return 0;}
		else	if(high==low&&ok){cout << "= " << mid << endl; return 0;}
		if(ok)	high = mid-1;
		else	low = mid+1;
		if(ok) llast = mid;
	}
	return 0;
}


# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -