This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
int main (){
int n;
int antun = 0;
int counter=0;
//int counterr=n-1;
int turn = 0;
int branka = 0;
int k;
cin>>n>>k;
k = k*2-1;
string pebbles;
cin>>pebbles;
while (antun<k&&branka<k){
if(pebbles[counter]==80){
turn++;
counter++;
}
else if(pebbles[n-counter-1]==80){
turn++;
counter++;
}
else {
if(turn%2==1){
branka++;
}
else{
antun++;
}
turn++;
}
}
if(antun>branka){
cout<<"NE";
}
else{
cout<<"DA";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |