https://www.acmicpc.net/problem/1003 1003번: 피보나치 함수 각 테스트 케이스마다 0이 출력되는 횟수와 1이 출력되는 횟수를 공백으로 구분해서 출력한다. www.acmicpc.net 정답 code t = int(input()) for _ in range(t): f0 = [1,0] f1 = [0,1] n = int(input()) if n>1: for i in range(n-1): f0.append(f1[-1]) f1.append(f0[-2]+f1[-1]) print(f0,f1) print(f0[n],f1[n]) 시간초과 code import sys input = sys.stdin.readline def fibonacci(n): global zcount, ocount if ..