답안 #499479

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
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;
}

Compilation message

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