답안 #641264

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
641264 2022-09-16T09:40:37 Z christinelynn Zagrade (COI20_zagrade) C++17
0 / 100
1429 ms 280 KB
#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++){
      for(int j=i+1;j<=N;j+=2){
        cout<<'?'<<' '<<i<<' '<<j<<endl;
        ll x;
        cin>>x;
        if(x==1){
          ans[i]='(';
          ans[j]=')';
        }
      }
    }
    string s={};
    for(int i=1;i<=N;i++){
      s+=ans[i];
    }
    cout<<"! "<<s<<endl;
  }
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 208 KB Output is correct
2 Runtime error 1429 ms 280 KB Execution killed with signal 13
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 208 KB Mismatch at position 1. Expected ), found
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 208 KB Unexpected end of file - token expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 208 KB Unexpected end of file - token expected
2 Halted 0 ms 0 KB -