0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 17:25:24 +00:00
OI-codes/problem/P1321/P1321.cpp

23 lines
462 B
C++
Raw Normal View History

2020-09-20 09:27:35 +00:00
// R38664427
#include <bits/stdc++.h>
using namespace std;
int main() {
string s;
int boy, girl;
boy = girl = 0;
cin >> s;
for (int i = 0; i < s.size() - 2; i++) {
boy += (s[i] == 'b' || s[i + 1] == 'o' || s[i + 2] == 'y');
}
for (int i = 0; i < s.size() - 3; i++) {
girl += (s[i] == 'g' || s[i + 1] == 'i' || s[i + 2] == 'r' || s[i + 3] == 'l');
}
cout << boy << endl << girl << endl;
return 0;
}