| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 641269 | christinelynn | Zagrade (COI20_zagrade) | C++17 | 883 ms | 288 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define fi first
#define se second
#define fastio ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
const ll MOD=1e9+7;
using namespace std;
ll N,M;
char ans[1005];
bool b[1005];
int main(){
cin>>N>>M;
if(M==N*N/4){
for(int i=1;i<=N;i++){
if(b[i]){
continue;
}
for(int j=i+1;j<=N;j+=2){
cout<<'?'<<' '<<i<<' '<<j<<endl;
ll x;
cin>>x;
if(x==1){
ans[i]='(';
ans[j]=')';
b[i]=true;
b[j]=true;
break;
}
}
}
string s={};
for(int i=1;i<=N;i++){
s+=ans[i];
}
cout<<"! "<<s<<endl;
}
}| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
