POJ 2509 Peter's smoke

来源:互联网 发布:在淘宝网开店要钱吗 编辑:程序博客网 时间:2024/05/16 10:11
一道简单题,模拟吸烟这个过程既可,每吸k根得到的,加上余下的的,再每k根的去吸。


Peter's smokes
Time Limit: 1000MSMemory Limit: 65536KTotal Submissions: 13338Accepted: 5315

Description

Peter has n cigarettes. He smokes them one by one keeping all the butts. Out of k > 1 butts he can roll a new cigarette.
How many cigarettes can Peter have?

Input

Input is a sequence of lines. Each line contains two integer numbers giving the values of n and k.

Output

For each line of input, output one integer number on a separate line giving the maximum number of cigarettes that Peter can have.

Sample Input

4 3
10 3
100 5

Sample Output

5
14
124

Source

The UofA Local 2000.10.14

代码如下

原创粉丝点击