균형 잡힌 세계(30)
공유 소스 보기(acmicpc.net) 공유 소스 보기 www.acmicpc.net 아, 짜증나. . . 10분 만에 풀었는데 컴파일 할 때 자꾸 안 된다고 하셔서 부담이 컸어요. . . 문제를 찾는 데 40분. 먼저 제가 쓴 답변을 보겠습니다. #include<bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); while(true){ string s; getline(cin, s); stack<char> stk; bool check = true; if(s==”.”) … Read more