Recent Posts
Notice
No Rules Rules
MBTI (feat. 백준, 25640번) 본문
728x90
반응형
MBTI
https://www.acmicpc.net/problem/25640
반응형
// 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
반응형
'생활 > 코테' 카테고리의 다른 글
홀짝 수열 (feat. 백준, 25629번) (0) | 2022.09.26 |
---|---|
팰린드롬수 (feat. 백준, 1259번) (0) | 2022.09.26 |
푸앙이와 종윤이 (feat. 백준, 25591번) (0) | 2022.09.23 |
N 찍기 (feat. 백준, 2741번) (0) | 2022.09.23 |
검증수 (feat. 백준, 2475번) (0) | 2022.09.23 |
Comments