QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#763273 | #9741. CCPC | UESTC_NLNS# | WA | 9ms | 10456kb | Python3 | 74b | 2024-11-19 19:18:37 | 2024-11-19 19:18:39 |
Judging History
answer
a = input()
m1 = a.count('C')//3
m2 = a.count('P')//3
print(min(m1,m2))
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 9ms
memory: 10456kb
input:
ABCDCPCPC
output:
0
result:
wrong answer 1st lines differ - expected: '1', found: '0'