# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
499479 | 2021-12-28T13:45:31 Z | Ghazal_Dwai | Kamenčići (COCI21_kamencici) | C++14 | 0 ms | 0 KB |
#include <bits/stdc++.h> using namespace std; int main(){ int n,k; string s; cin>>n>>k; cin>>s; int an=0,br=0; int x=n; while(x--){ for(int i=0;i<=n;i++){ for(int j=n-1;j<=0;j++){ if(s[i]=='c'&&s[j]=='c'){ if(x%2==1){ an++; } else{ br++; } } if(an>=k){ cout<<"NE"; } else{ if(br>=k){ cout<<"DA"; } } } } } } return 0; }