藍橋杯 入門訓練 Fibonacci數列

2021-08-10 19:17:19 字數 689 閱讀 3435

入門訓練 fibonacci數列  

時間限制:1.0s   記憶體限制:256.0mb

問題描述

fibonacci數列的遞推公式為:fn=fn-1+fn-2,其中f1=f2=1。

當n比較大時,fn也非常大,現在我們想知道,fn除以10007的餘數是多少。

輸入格式

輸入包含乙個整數n。

輸出格式

輸出一行,包含乙個整數,表示f

n除以10007的餘數。

說明:在本題中,答案是要求fn除以10007的餘數,因此我們只要能算出這個餘數即可,而不需要先計算出fn的準確值,再將計算的結果除以10007取餘數,直接計算餘數往往比先算出原數再取餘簡單。

樣例輸入 10

樣例輸出 55

樣例輸入 22

樣例輸出

7704

資料規模與約定

1 <= n <= 1,000,000。

#include#includeusing namespace std;

const int inf=10007;

int main()

printf("%d\n",f[n]);

return 0;

}

這裡由於陣列過大,在編譯器(codeblocks)上能無法執行,但在藍橋杯系統提交正確。

藍橋杯入門訓練

1.a b問題 include int main 2.序列求和問題 include int main 3.圓的面積問題 include include define pi atan 1.0 4 int main 4.fibonacci數列 include int main 注意陣列的長度100000...

藍橋杯 入門訓練

begin 1 a b問題 include using namespace std inta,b intmain view code begin 2 序列求和 include using namespace std long long n long long ans 0 int main view ...

藍橋杯入門訓練 藍橋杯備賽

begin 1 a b問題str1 input str2 str1.split s int str2 0 int str2 1 print s begin 2 序列求和s int input 用公式計算而不用迴圈,避免超時 n s s 1 2print int n begin 3 圓的面積impor...