본문 바로가기
백준 알고리즘/수학

백준 1003번 파이썬

by paysmile 2018. 9. 24.

def fibonacci(n):

count_0=[1,0,1]
count_1=[0,1,1]
if n==0 or n==1:
print(count_0[n],count_1[n])
else:
for i in range(3,n+1):
count_0.append(count_0[i-1]+count_0[i-2])
count_1.append(count_1[i-1]+count_1[i-2])
print(count_0[n],count_1[n])
for i in range(int(input())):
fibonacci(int(input()))


'백준 알고리즘 > 수학' 카테고리의 다른 글

백준 11051번 파이썬  (0) 2018.09.28
백준 11050번 파이썬  (0) 2018.09.24
백준 2749 파이썬  (0) 2018.09.24
백준 2747 파이썬  (0) 2018.09.24
백준 2747 파이썬  (0) 2018.09.24