們–加強斐波那契
time limit: 1000 ms memory limit: 65536 kib
submit statistic discuss
problem description
對於斐波那契數列想必各位已經見過了。這裡給出乙個加強版。
f[i] = i (i <= 3);
f[i] = f[i-1] + f[i-2] + f[i-3](i >= 4);
input
多組輸入。每組輸入乙個整數n (1<= n && n <= 30)。
output
每組資料輸出乙個整數,代表f[n]。
sample input1 4
sample output1 6
hint
source
#include
#include
int main()
while(~scanf("%d",&n))
return
0;}
就是單純的斐波那契數列 們 加強斐波那契
description 對於斐波那契數列想必各位已經見過了。這裡給出乙個加強版。f i i i 3 f i f i 1 f i 2 f i 3 i 4 input 多組輸入。每組輸入乙個整數n 1 n n 30 output 每組資料輸出乙個整數,代表f n sample input 1 4 sam...
遞推遞迴練習 K 們 加強斐波那契
description 對於斐波那契數列想必各位已經見過了。這裡給出乙個加強版。f i i i 3 f i f i 1 f i 2 f i 3 i 4 input 多組輸入。每組輸入乙個整數n 1 n n 30 output 每組資料輸出乙個整數,代表f n sample input 1 4 sam...
們 加強斐波那契 oj
time limit 1000 ms memory limit 65536 kib submit statistic problem description 對於斐波那契數列想必各位已經見過了。這裡給出乙個加強版。f i i i 3 f i f i 1 f i 2 f i 3 i 4 input 多...