문제

https://www.acmicpc.net/problem/20001

걸린 시간

- 실패

풀이

C++

#include <bits/stdc++.h>
#define INF 1e9
typedef long long ll;
using namespace std;

string s;
int p;

void solve(){
    p = 0;
    while(true){
        getline(cin, s);
        if(s == "고무오리 디버깅 끝")
            break;
        else if(s == "고무오리")
            if(!p)
                p += 2;
            else
                p--;
        else if(s == "문제")
            p++;
    }
    if(!p)
        cout << "고무오리야 사랑해";
    else
        cout << "힝구";
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    getline(cin, s);
    solve();
    return 0;
}

한글 문자열 입출력 문제. wstring, wchar_t 사용법을 열심히 찾고 파일의 인코딩도 손보았었지만, 일반 string 을 사용해도 문제가 없었다.

댓글