A. New Year Candles 1000 / 水题
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. New Year Candles 1000 / 水题相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/379/A
#include<bits/stdc++.h>
using namespace std;
int main(void)
{
int n,m; cin>>n>>m;
int sum=n;
while(n>=m)
{
sum+=n/m;
n=n/m+n%m;
}
cout<<sum;
return 0;
}
以上是关于A. New Year Candles 1000 / 水题的主要内容,如果未能解决你的问题,请参考以下文章
Good Bye 2018 A. New Year and the Christmas Ornament
Codeforces 1106C Lunar New Year and Number DivisionLunar |数学
CF908D New Year and Arbitrary Arrangement 期望DP
Codeforces Round #166 (Div. 2)暴力A. Beautiful Year