c088. 陣列:費式數列
Tags :
Accepted rate : 2人/2人 ( 100% ) [非即時]
評分方式:
Tolerant

最近更新 : 2024-11-13 15:12

Content

費式數列定義:

a[1]=1

a[2]=1

a[n]=a[n-1]+a[n-2] , n>=3 

輸入一個數字n,輸出費式數列第n項。

Input

輸入一個數字n。 0<n<50

Output

輸出費式數列第n項。

Sample Input #1
3
Sample Output #1
2
Sample Input #2
5
Sample Output #2
5
Sample Input #3
7
Sample Output #3
13
測資資訊:
記憶體限制: 64 MB
不公開 測資點#0 (25%): 1.0s , <1K
不公開 測資點#1 (25%): 1.0s , <1K
不公開 測資點#2 (25%): 1.0s , <1K
不公開 測資點#3 (25%): 1.0s , <1K
Hint :
Tags:
出處:
[管理者: stu210106(lin) ]


ID User Problem Subject Hit Post Date
沒有發現任何「解題報告」