博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
7_7_2013 E.Function
阅读量:6502 次
发布时间:2019-06-24

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

hot3.png

Problem E: Function

Time Limit: 1 Sec  
Memory Limit: 32 MB
Submit: 52  
Solved: 26
[ ][ ][ ]

Description

Define a function f(n)=(f(n-1)+1)/f(n-2). You already got f(1) and f(2). Now, give you a number m, please find the value of f(m). 

Input

There are several test cases. Each case contains three integers indicating f(1), f(2) and m ( 1 <= f(1), f(2), m <= 1000,000,000). 

Output

For each case, please output the value of f(m), rounded to 6 decimal places. 

Sample Input

1 1 3

Sample Output

2.0000

#include 
#include
using namespace std;intmain(){ //freopen("fun.in", "r", stdin); //freopen("fun.out", "w", stdout); int m; double a[100]; while(~scanf("%lf %lf %d", &a[0], &a[1], &m)){ for (int i=2; i<10; i++){ a[i]=(a[i-1]+1.0)/a[i-2]; } //for(int i=0; i<10; i++) //printf("%.6lf", a[i]); printf("%.6lf\n", a[(m-1)%5]); //printf("%.6lf\n", a[m]); } return 0;}

转载于:https://my.oschina.net/dianpaopao/blog/143330

你可能感兴趣的文章
比较java与C++的不同
查看>>
Twitter Storm入门
查看>>
使用scikit-learn进行文本分类
查看>>
Ansible自动化运维配置与应用(结合实例)
查看>>
下面简要介绍软件工程的七条原理
查看>>
java POI实现excel实现表格导出
查看>>
Lua(三)——语句
查看>>
怎么看电脑有没有安装USB3.0驱动
查看>>
overflow清除浮动的原理
查看>>
Spring Boot 使用parent方式引用时 获取值属性方式默认@
查看>>
解决maven下载jar慢的问题(如何更换Maven下载源)
查看>>
linux安装gitLab
查看>>
concurrent包的实现示意图
查看>>
golang os.Args
查看>>
Linux常用命令
查看>>
spring-data-elasticsearch 概述及入门(二)
查看>>
Solr启动和结束命令
查看>>
1.12 xshell密钥认证
查看>>
3.2 用户组管理
查看>>
ibatis 动态查询
查看>>