Sol) #include int main() { int count_zero[41] = {1, 0}; //0 ~ n번째 피보나치 수가 호출하는 0의 수를 저장할 배열. int count_one[41] = {0, 1}; //0 ~ n번째 피보나치 수가 호출하는 1의 수를 저장할 배열. int n = 0; //input. int tc = 0; //test case. scanf("%d", &tc); while(tc--) { scanf("%d", &n); for (int i = 2; i