QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#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;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3540kb
input:
ABCDCPCPC
output:
0
result:
wrong answer 1st lines differ - expected: '1', found: '0'