restructure zeta/** to storage/zeta/**
This commit is contained in:
9
storage/zeta/py/completed/9461.py
Normal file
9
storage/zeta/py/completed/9461.py
Normal file
@@ -0,0 +1,9 @@
|
||||
T = int(input())
|
||||
M = [1, 1, 1] + [0 for i in range(100 - 3)]
|
||||
I = [int(input()) for _ in range(T)]
|
||||
|
||||
for i in range(3, max(I)):
|
||||
M[i] = M[i - 2] + M[i - 3]
|
||||
|
||||
for i in I:
|
||||
print(M[i - 1])
|
||||
Reference in New Issue
Block a user