이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int main (){
int n;
bool answ = true;
int antun = 0;
int counter=0;
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){
answ = false;
}
if (answ==true){
cout<<"DA";
}
else{
cout<<"NE";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |