답안 #1004103

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1004103 2024-06-21T05:22:19 Z vjudge1 Zagrade (COI20_zagrade) C++17
0 / 100
10 ms 344 KB
#include <bits/stdc++.h>

using namespace std;

const int M = 1e5 + 1;

char ans[M];

void solve(int a,int b)
{
	if (a>=b)
		return;
	if (a+1==b)
	{
		ans[a]='(';
		ans[b]=')';
		return;
	}
	bool v;
	for (int i=a+1;i<b;i+=2)
	{
		cout<<"? "<<a<<' '<<i<<endl;
		cin>>v;
		if (v)
		{
			ans[a]='(';
			ans[i]=')';
			solve(a+1,i-1);
			solve(i+1,b);
			return;
		}
	}
}

int main()
{
	int n,q;
	cin>>n>>q;
	solve(1,n);
	cout<<"! ";
	for (int i=1;i<=n;i++)
		cout<<ans[i];
	cout<<endl;
	
	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 2 ms 344 KB Output is correct
3 Incorrect 10 ms 344 KB Mismatch at position 7. Expected (, found
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Mismatch at position 1. Expected ), found (
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Mismatch at position 1. Expected (, found
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 340 KB Mismatch at position 1. Expected ), found
2 Halted 0 ms 0 KB -