Help me please!
below is a part of the code which causes the error.
int B[996];
for (j = 0, k = 0; j < (N / 6); j++){
if (A[j] == 0){
continue;
}
B[k++] = A[j];
} //팀원이 여섯명인 팀만의 순위대로 저장한 배열을 새로 만듭니다.
int SUM[167] = { 0 };
for (j = 0; j < (N / 6); j++){
int count = 0;
for (k = 0; k < (N / 6) && count < 4; k++){
if (B[j] == B[k]){
SUM[B[j]] += k + 1;
count++;
}
}
}
Here, (N/6) 's max is 166.