码迷,mamicode.com
首页 > 其他好文 > 详细

斐波那契凤尾

时间:2018-01-01 21:56:46      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:const   main   algo   mod   stream   pac   post   style   重点   

题目:https://www.nowcoder.com/pat/2/problem/253

重点是在25位后进行补0

 1 #include <iostream>
 2 #include <algorithm>
 3 #include <cstdio>
 4 using namespace std;
 5 const int maxn = 100000 + 1;
 6 #define MOD 1000000
 7 int f[maxn];
 8 
 9 void db(){
10     f[1] = 1;
11     f[2] = 2;
12     for (int i = 3; i < maxn; i++){
13         f[i] = f[i - 1] + f[i - 2];
14         f[i] %= MOD;
15     }
16 }
17 
18 int main(){
19     int n;
20     db();
21     while (~scanf("%d",&n)){
22         if (n < 25)
23             printf("%d\n", f[n]);
24         else
25         printf("%06d\n", f[n]);
26     }
27     //system("pause");
28     return 0;
29 }

 

斐波那契凤尾

标签:const   main   algo   mod   stream   pac   post   style   重点   

原文地址:https://www.cnblogs.com/jaydenouyang/p/8168749.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!