No Rules Rules

아! (feat. 백준, 4999번) 본문

생활/코테

아! (feat. 백준, 4999번)

개발하는 완두콩 2023. 4. 25. 12:20
728x90
반응형

아!
https://www.acmicpc.net/problem/4999

 

4999번: 아!

입력은 두 줄로 이루어져 있다. 첫째 줄은 재환이가 가장 길게 낼 수 있는 "aaah"이다. 둘째 줄은 의사가 듣기를 원하는 "aah"이다. 두 문자열은 모두 a와 h로만 이루어져 있다. a의 개수는 0보다 크거

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 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
반응형
Comments