cigarettes

cigarettes
时间限制:3000 ms | 内存限制:65535 KB
难度:2

描述

Tom has many cigarettes. We hypothesized that he has n cigarettes and smokes them

one by one keeping all the butts. Out of k > 1 butts he can roll a new cigarette.
Now,do you know how many cigarettes can Tom has?

输入
First input is a single line,it's n and stands for there are n testdata.then there are n lines ,each line contains two integer numbers giving the values of n and k.
输出
For each line of input, output one integer number on a separate line giving the maximum number of cigarettes that Peter can have.
样例输入

3
4 3
10 3
100 5

样例输出

5
14
124

////////////////////////////////////

01.#include <iostream>
02.
03.using namespace std;
04.
05.int main()
06.{
07.int n,k;
08.int testNum;
09.
10.cin >> testNum;
11.while (testNum--)
12.{
13.cin >> n >> k;
14.if (k == 1)
15.continue;
16.int sum = 0;
17.while (true)
18.{
19.sum += n - n % k;
20.n = n / k + n % k;
21.if (n < k)
22.{
23.sum += n;
24.break;
25.}
26.
27.}
28.cout << sum << endl;
29.}
30.
31.return 0;
32.}

时间: 2024-12-29 21:27:17

cigarettes的相关文章

设计标志:28个餐饮和食品类网站的logo标志

文中收集的搜视28个餐饮与食品类网站的logo标志,涉及面很广.有甜品,饮料,批萨以及餐馆等各种餐饮网站.可以作为设计此类食品标志的参考资料,而且这些logo标志的配色也个不相同,可以学习参考,开拓思路. Jalapenos  Happy Thanksgiving Old Stove Gourmet Homespun Chili Food Writers Wine Place Latin Gourmet Rich Kich Wine Slicedlemon Films Cork Blink Ch

UVa 10346 Peter&#039;s Smokes (water ver.)

10346 - Peter's Smokes Time limit: 3.000 seconds http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=1287 Peter has n cigarettes. He smokes them one by one keeping all the butts. Out o

编写高质量代码改善C#程序的157个建议[为泛型指定初始值、使用委托声明、使用Lambda替代方法和匿名方法]

原文:编写高质量代码改善C#程序的157个建议[为泛型指定初始值.使用委托声明.使用Lambda替代方法和匿名方法] 前言 泛型并不是C#语言一开始就带有的特性,而是在FCL2.0之后实现的新功能.基于泛型,我们得以将类型参数化,以便更大范围地进行代码复用.同时,它减少了泛型类及泛型方法中的转型,确保了类型安全.委托本身是一种引用类型,它保存的也是托管堆中对象的引用,只不过这个引用比较特殊,它是对方法的引用.事件本身也是委托,它是委托组,C#中提供了关键字event来对事件进行特别区分.一旦我们

3年内,骑遍全世界最好的骑行路线

&http://www.aliyun.com/zixun/aggregation/37954.html">nbsp; 工作之外,也总该设立一些目标吧,要不然,浑浑噩噩,就这么过去了.     2007年,骑过了欧洲最好的路线--环法.......的小一半,法国南部:     2009年,骑过了亚洲最好的路线--青海湖.     未来3年,让我和我的bianchi 1885骑遍全世界最好的路线.     骑行和登山不同,登山的人总是对海拔高度有不可抑制的热情,骑行路线的好与不好,美与

阿里巴巴网站导航代码

<!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3c.org/tr/1999/rec-html401-19991224/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>阿里巴巴网站导航代码</titl