Submission #161147

# Submission time Handle Problem Language Result Execution time Memory
161147 2019-11-01T00:05:44 Z Doda COCI17_cezar (COCI17_cezar) C++14
Compilation error
0 ms 0 KB
#include <iostream>

using namespace std;


int k[20];
int main () {

int N,x,y,n;
int a = 0;
int u = 0;
int x = 0;
cin >> N ;

for (int i = 2; i<14;i++){
	k[i] = 4;
}

for (int i = 0; i<N ; i++){
	cin	>> n;
	x += n;
	k[n] -= 1;
}

y = 21 - x ;

for (int i = y;i<14;i++){
	u += k[i];
}

for (int i = 0;i<y+1;i++){
	a += k[i];
}

if (u>a) {
	cout << "DOSTA";
}
else{
	cout << "VUCI";
}

return 0;
}

Compilation message

cezar.cpp: In function 'int main()':
cezar.cpp:12:5: error: redeclaration of 'int x'
 int x = 0;
     ^
cezar.cpp:9:7: note: 'int x' previously declared here
 int N,x,y,n;
       ^