QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#749640 | #9741. CCPC | ZhangYG | WA | 0ms | 3700kb | C++14 | 308b | 2024-11-15 08:24:52 | 2024-11-15 08:24:53 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
string str;
int len,c,p;
int main()
{
cin >> str;
len = str.length();
for(int i = 0 ; i < len ; i++)
{
if(str[i] == 'C') c++;
if(str[i] == 'P') p++;
}
c = c / 3;
// cout << c << p;
int ans = min(c,p);
cout << ans;
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3700kb
input:
ABCDCPCPC
output:
1
result:
ok single line: '1'
Test #2:
score: -100
Wrong Answer
time: 0ms
memory: 3692kb
input:
CAAACPBCDEFGCHIJCKLPM
output:
1
result:
wrong answer 1st lines differ - expected: '2', found: '1'