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

hdu1005

时间:2017-01-10 15:03:20      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:github   ret   amp   int   ast   res   turn   include   .com   

//c

//https://github.com/WEIZIBIN/acm/blob/master/hdu1005.c
#include <stdio.h>
int main()
{
int i, result, a, b, j;
long n;
int f[50] = {0};
f[1] = 1;
f[2] = 1;
while(scanf("%d%d%d", &a, &b, &n) != EOF)
{
for (j = 3; j < 50; ++j)
{
f[j] = (a * f[j - 1] + b * f[j - 2]) % 7;
if (f[j] == 0 && f[j - 1] == 0)
break;
}

	if(n == 0)
		break;
	else
		printf("%d\n", f[n % 49]);
}
return 0;

}

hdu1005

标签:github   ret   amp   int   ast   res   turn   include   .com   

原文地址:http://www.cnblogs.com/wangkun1993/p/6268994.html

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