QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#777396 | #9741. CCPC | ERin_cy# | WA | 0ms | 3540kb | C++14 | 464b | 2024-11-24 01:57:52 | 2024-11-24 01:57:52 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
void solve(){
string str;
cin >> str;
int a = 0;
int b = 0;
for(int i = 0;i<str.size();i++){
if(str[i] =='c') a++;
else if(str[i] =='p') b++;
}
cout << min(a/3,b) << endl;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t;
t = 1;
while(t--){
solve();
}
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3540kb
input:
ABCDCPCPC
output:
0
result:
wrong answer 1st lines differ - expected: '1', found: '0'