题解
2023-06-24 14:06:20
发布于:上海
150阅读
0回复
0点赞
#include <iostream>
using namespace std;
int c, p, d;
string s;
int main(){
cin >> s;
int len = s.size();
for (int i = 0; i < len; i++){
if (s[i] == 'c'){
c++;
}
else if (s[i] == 'p'){
p++;
}
else if (s[i] == 'd'){
d++;
}
}
int mx = 10000;
if (c < mx) mx = c;
if (p < mx) mx = p;
if (d/2 < mx) mx = d/2;
cout << mx;
return 0;
}
全部评论 1
大佬,有一道题你绝对ac不了
2023-07-15 来自 浙江
0https://www.acgo.cn/problemset/2655/info
2023-07-15 来自 浙江
0这个难度不符合 。。。
2023-07-15 来自 上海
0#include <iostream>
#include <string>
using namespace std;
string a;
int main(){
cin>>a;
cout<<a;
return 0;
}2023-07-15 来自 上海
0
有帮助,赞一个