# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1011409 | 2024-06-30T13:17:10 Z | vannnnnnnn | Zagrade (COI20_zagrade) | C++14 | 4 ms | 344 KB |
#include<bits/stdc++.h> using namespace std; int main() { int n, q; scanf("%d %d", &n, &q); char s[n+5]; s[0]='('; for(int i=0; i<n-1; i++) { printf("? %d %d\n", i+1, i+2); fflush(stdout); int ans; scanf("%d", &ans); if(ans==1) { s[i]='('; s[i+1]=')'; i++; } else { if(s[i]=='(') { s[i+1]='('; } else { s[i+1]=')'; } } } printf("! "); for(int i=0; i<n; i++) { printf("%c", s[i]); } printf("\n"); fflush(stdout); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Correct | 2 ms | 344 KB | Output is correct |
3 | Incorrect | 4 ms | 344 KB | Answer length should be 1000, but it is 440 |
4 | 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 | 344 KB | Mismatch at position 4. 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 | - |