#include<bits/stdc++.h>
using namespace std;
int main()
{
string s; cin>>s;
int n = s.size();
stack<int> lst;
int D = 0;
string B = "";
for(int i = 0; i < n; i++){
if(!lst.size() || s[i]!=s[lst.top()]){
lst.push(i);
B+='(';
D++;
}else{
lst.pop();
B+=')';
D--;
}
}
cout << (D!=0 ? "-1" : B);
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |