https://www.acmicpc.net/problem/4999
문제 설명을 제대로 이해하지 못해서 재환이가 말하는 소리는 항상 "aaah"인 줄 알았다. 하지만 아니었다는 점.
a의 개수를 세서 재환이가 부족하게 질렀다면 병원에 가게 하면 된다.
#include <iostream>
#include <string>
using namespace std;
int main()
{
cin.tie(0), ios_base::sync_with_stdio(false);
string s1, s2;
int cnt = 0, cnt2 = 0;
cin >> s2 >> s1;
for (auto &i : s2)
if (i == 'a')
cnt2++;
for (auto &i : s1)
if (i == 'a')
++cnt;
if (cnt <= cnt2)
cout << "go";
else
cout << "no";
return 0;
}
'온라인저지' 카테고리의 다른 글
[BOJ] 6603번: 로또 (0) | 2018.08.02 |
---|---|
[BOJ] 2178번: 미로 탐색 (0) | 2018.08.02 |
[BOJ] 11383번: 뚊 (0) | 2018.08.02 |
[BOJ] 1766번: 문제집 (0) | 2018.07.27 |
[BOJ] 2504번: 괄호의 값 (2) | 2018.07.27 |
[BOJ] 5845번: Perimeter (0) | 2018.07.27 |
댓글