Recent Posts
Notice
No Rules Rules
아! (feat. 백준, 4999번) 본문
728x90
반응형
아!
https://www.acmicpc.net/problem/4999
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
string str1, str2;
cin >> str1 >> str2;
register int chk1 = 0, chk2 = 0;
for(auto& ch : str1)
if(ch == 'a')
++chk1;
for(auto& ch : str2)
if(ch == 'a')
++chk2;
if(chk1 < chk2)
cout << "no";
else
cout << "go";
return 0;
}
// *&)*@*
반응형
단순 문자열 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
학교 탐방하기 (feat. 백준, 13418번) (0) | 2023.04.26 |
---|---|
고속철도 설계하기 (feat. 백준, 1833번) (0) | 2023.04.25 |
고추장 괄호 문자열 (feat. 백준, 27967번) (0) | 2023.04.25 |
2진수 8진수 (feat. 백준, 1373번) (0) | 2023.04.21 |
창문 닫기 (feat. 백준, 13909번) (0) | 2023.04.21 |
Comments