题解
2023-08-31 09:42:36
发布于:广东
11阅读
0回复
0点赞
真想不到,一道入门题纠缠我这么久
#include <bits/stdc++.h>
using namespace std;
int main()
{
string s;
cin>>s;
int c=0,p=0,d=0;
for(auto i:s)
{
if (i == 'c') c++;
if (i == 'p') p++;
if (i == 'd') d++;
}
d/=2;
cout<<min({c,p,d});
}
这里空空如也
有帮助,赞一个