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
多組輸入。每組輸入乙個整數n (1<= n && n <= 30)。
output
每組資料輸出乙個整數,代表f[n]。
sample input
14
sample output
16
hint
source
#include #include int main()printf("%lld\n",a[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...
遞推之們 加強斐波那契
們 加強斐波那契 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 ...
遞推遞迴練習 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...