Submission #499479

#TimeUsernameProblemLanguageResultExecution timeMemory
499479Ghazal_DwaiKamenčići (COCI21_kamencici)C++14
Compilation error
0 ms0 KiB
#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; }

Compilation message (stderr)

Main.cpp:38:5: error: expected unqualified-id before 'return'
   38 |     return 0;
      |     ^~~~~~
Main.cpp:39:1: error: expected declaration before '}' token
   39 | }
      | ^