博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1755: [Usaco2005 qua]Bank Interest
阅读量:6197 次
发布时间:2019-06-21

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

1755: [Usaco2005 qua]Bank Interest

Time Limit: 5 Sec  Memory Limit: 64 MB
Submit: 187  Solved: 162
[][][]

Description

Farmer John made a profit last year! He would like to invest it well but wonders how much money he will make. He knows the interest rate R (an integer between 0 and 20) that is compounded annually at his bank. He has an integer amount of money M in the range 100..1,000,000. He knows how many years Y (range: 0..400) he intends to invest the money in the bank. Help him learn how much money he will have in the future by compounding the interest for each year he saves. Print an integer answer without rounding. Answers for the test data are guaranteed to fit into a signed 32 bit integer. 看了样例输入输出就知道怎么回事了..........

Input

* Line 1: Three space-separated integers: R, M, and Y

Output

* Line 1: A single integer that is the number of dollars FJ will have after Y years.

Sample Input

5 5000 4
INPUT DETAILS:
5% annual interest, 5000 money, 4 years

Sample Output

6077
OUTPUT DETAILS:
Year 1: 1.05 * 5000 = 5250
Year 2: 1.05 * 5250 = 5512.5
Year 3: 1.05 * 5512.50 = 5788.125
Year 4: 1.05 * 5788.125 = 6077.53125
The integer part of 6077.53125 is 6077.

HINT

 

Source

 

题解:我猜这个应该是除了1000之外我做过的最水的bzoj题了= =,不用多解释,看看样例就明白怎么回事了

1 /************************************************************** 2     Problem: 1755 3     User: HansBug 4     Language: Pascal 5     Result: Accepted 6     Time:0 ms 7     Memory:220 kb 8 ****************************************************************/ 9  10 var l,m,n:longint;11 begin12      readln(n,m,l);13      writeln(trunc(extended(m)*exp(ln((100+n)/100)*l)));14      readln;15 end.

 

转载于:https://www.cnblogs.com/HansBug/p/4428330.html

你可能感兴趣的文章
重温二分查找算法
查看>>
ComponentOne 2016 年产品规划
查看>>
SQL中where条件解析
查看>>
ORACLE 触发器控制用户登录之权限限制
查看>>
oracle 执行存储过程 ora00131
查看>>
SAP Solution Manager流程与邮件集成,提报审批 so easy
查看>>
利用Oracle RDA( Remote Diagnostic Agent)快速收集Oracle产品分析数据
查看>>
timesten常见的一些简单问题
查看>>
C++中一些特殊函数的使用
查看>>
可变参数宏__VA_ARGS__和...
查看>>
如何实践设计原则
查看>>
Linux进程间通信——使用流套接字
查看>>
第五届中国互联网安全大会:人是大安全时代的核心
查看>>
Makefile第一讲:一个简单的Makefile
查看>>
CSS3画箭头&calc动态调整高度
查看>>
如何管理非结构化互动数据
查看>>
AVEVA PML.Net for DWG
查看>>
拒绝从入门到放弃_《Python 核心编程 (第二版)》必读目录
查看>>
numpy基础代码操练
查看>>
CloudCC:企业管理者如何与CRM"冰释前嫌"?
查看>>