쉽게 풀었는데 아래와 같이 조금 더 간결하게 풀 수도 있었을 것 같다.
for(int i = 0; i < num_list.length; i++) { answer[num_list[i] % 2]++; }