0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 05:25:28 +00:00
OI-codes/Luogu/P1321/P1321.cpp

24 lines
468 B
C++

// 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;
}