답안 #148387

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
148387 2019-09-01T04:15:40 Z Welcome to osu!(#3734, easrui, CodePlatina, jhwest2) HicCup (FXCUP4_hiccup) C++17
컴파일 오류
0 ms 0 KB
#include <bits/stdc+++.h>
#include "hiccup.h"
using namespace std;

int HicCup(std::string S)
{
    int cnt = 0;
    for(int i=0; i<S.size(); i++){
        if(S[i]=='H') cnt++;
        else cnt--;
        if(cnt<0){
            cout << -1;
            return 0;
        }
    }
    if(cnt!=0) cout << -1;
    else cout << 0;
}

Compilation message

hiccup.cpp:1:10: fatal error: bits/stdc+++.h: No such file or directory
 #include <bits/stdc+++.h>
          ^~~~~~~~~~~~~~~~
compilation terminated.