博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 1005 Number Sequence
阅读量:5344 次
发布时间:2019-06-15

本文共 1078 字,大约阅读时间需要 3 分钟。

Problem Description
A number sequence is defined as follows:
f(1) = 1, f(2) = 1, f(n) = (A * f(n - 1) + B * f(n - 2)) mod 7.
Given A, B, and n, you are to calculate the value of f(n).
 
Input
The input consists of multiple test cases. Each test case contains 3 integers A, B and n on a single line (1 <= A, B <= 1000, 1 <= n <= 100,000,000). Three zeros signal the end of input and this test case is not to be processed.
 
Output
For each test case, print the value of f(n) on a single line.
 
Sample Input
1 1 3
1 2 10
0 0 0
 
Sample Output
2 5
 
//O(≧口≦)O 这里问需要注意的问题,那就是当时7的倍数的时候,之后的data全都是0,全是0呀!!找不到循环节!!
//(⊙o⊙)… 所以要单独处理一下这个问题;
 
#include 
#include
#include
#include
#include
using namespace std;int main(){ int a,b,n,k; int data[100]; data[1]=1;data[2]=1; while(cin>>a>>b>>n) { if(a==0&&b==0&&n==0) break; if((a+b)%7==0) { if(n<3) cout<<"1"<

 

转载于:https://www.cnblogs.com/nefu929831238/p/5448419.html

你可能感兴趣的文章
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>
加固linux
查看>>
Hyper-V虚拟机上安装一个图形界面的Linux系统
查看>>
【Crash Course Psychology】2. Research & Experimentation笔记
查看>>
关于 linux 的 limit 的设置
查看>>
MTK笔记
查看>>
shell cat 合并文件,合并数据库sql文件
查看>>
python全栈 计算机硬件管理 —— 硬件
查看>>
Delphi7编译的程序自动中Win32.Induc.a病毒的解决办法
查看>>
egret3D与2D混合开发,画布尺寸不一致的问题
查看>>
struts1和struts2的区别
查看>>
Redis常用命令
查看>>
微软职位内部推荐-Sr. SE - Office incubation
查看>>
套接口和I/O通信
查看>>
阿里巴巴面试之利用两个int值实现读写锁
查看>>
浅谈性能测试
查看>>
Winform 菜单和工具栏控件
查看>>
CDH版本大数据集群下搭建的Hue详细启动步骤(图文详解)
查看>>
巧用Win+R
查看>>
浅析原生js模仿addclass和removeclass
查看>>