CSES - Putka Open 2020 – 4/5 - Results
Submission details
Task:Peli
Sender:AtskaFin
Submission time:2020-11-06 18:25:04 +0200
Language:C++ (C++17)
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED35
#2ACCEPTED65
Test results
testverdicttimegroup
#1ACCEPTED0.01 s1, 2details
#2ACCEPTED0.01 s2details

Code

#include <iostream>
#include <string>
using namespace std;
int main() {
int t; cin >> t;
for (int i = 0; i < t; i++) {
string x; cin >> x;
int f = 0, len = x.size(), c = 0;
for (int i = 0; i < len; i++) {
if (x[i] == 'P') {
if (!f) f = 1;
else break;
} else if (f) {
c++;
}
}
cout << (c%2==0?2:1) << "\n";
}
}

Test details

Test 1

Group: 1, 2

Verdict: ACCEPTED

input
100
PP.
P......P.
.PP
..P.P.
...

correct output
2
2
2
1
2
...

user output
2
2
2
1
2
...
Truncated

Test 2

Group: 2

Verdict: ACCEPTED

input
100
.................................

correct output
2
1
2
1
1
...

user output
2
1
2
1
1
...
Truncated