CodeForces 379 A.New Year Candles(水~)

Description

a 根蜡烛,蜡烛烧一小时后熄灭变成短蜡烛, b 个短蜡烛可以换一根新蜡烛,问可以照亮多少小时

Input

两个整数 a b(1a1000,2b1000)

Output

输出可以照明的最长时间

Sample Input

4 2

Sample Output

7

Solution

水题,暴力模拟即可

Code

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
typedef long long ll;
typedef pair<int,int>P;
const int INF=0x3f3f3f3f,maxn=100001;
int main()
{
    int a,b;
    while(~scanf("%d%d",&a,&b))
    {
        int ans=a,num=a;
        while(num>=b)
        {
            ans+=num/b;
            num=num/b+num%b;
        }
        printf("%d\n",ans);
    }
    return 0;
}

你可能感兴趣的:(Code,Forces,水题)