No Rules Rules

MBTI (feat. 백준, 25640번) 본문

생활/코테

MBTI (feat. 백준, 25640번)

개발하는 완두콩 2022. 9. 26. 11:56
728x90
반응형

MBTI
https://www.acmicpc.net/problem/25640

 

25640번: MBTI

진호는 요즘 유행하는 심리 검사인 MBTI에 관심이 많다. MBTI는 아래와 같이 네 가지 척도로 사람들의 성격을 구분해서, 총 $16$가지의 유형중에서 자신의 유형을 찾을 수 있는 심리 검사이다. 내향(

www.acmicpc.net

 

반응형

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main(){
    ios::sync_with_stdio(false), cin.tie(NULL);
    string str, tmp;
    register int N, ans = 0;
    cin >> str >> N;
    for(register int i = 0; i < N; ++i){
        cin >> tmp;
        if(!str.compare(tmp))
            ++ans;
    }
    cout << ans;
    return 0;
}
// *&)*@*

 

입력된 문자열과 동일한 문제열의 개수를 카운팅하는 문제입니다.

728x90
반응형
Comments