# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
559784 | 2022-05-10T15:20:03 Z | A_D | Zagrade (COI20_zagrade) | C++14 | 1373 ms | 280 KB |
#include <bits/stdc++.h> #define int long long #define ii pair<int,int> #define F first #define S second using namespace std; void solve() { int n,q; cin>>n>>q; string s(n,'0'); int h=n; for(int i=0;i<n;i++){ for(int j=i+1;j<n;j+=2){ cout<<"? "<<i+1<<" "<<j+1<<endl; int x; cin>>x; if(x==1){ h-=2; s[i]='('; s[j]=')'; } } } cout<<"! "<<s<<endl; return; h/=2; for(int i=0;i<n;i++){ if(s[i]=='0'){ if(h>0){ s[i]=')'; } else{ s[i]='('; } h--; } } cout<<"! "<<s<<endl; } main() { /* ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); //*/ int t=1; // cin>>t; while(t--){ solve(); } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 208 KB | Output is correct |
2 | Runtime error | 1373 ms | 280 KB | Execution killed with signal 13 |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 208 KB | Mismatch at position 1. Expected ), found 0 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 208 KB | Incorrect |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 208 KB | Incorrect |
2 | Halted | 0 ms | 0 KB | - |