CF165B.Burning Midnight Oil

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

One day a highly important task was commissioned to Vasya — writing a program in a night. The program consists of nn lines of code. Vasya is already exhausted, so he works like that: first he writes vv lines of code, drinks a cup of tea, then he writes as much as lines, drinks another cup of tea, then he writes lines and so on: , , , ...

The expression is regarded as the integral part from dividing number aa by number bb .

The moment the current value equals 0, Vasya immediately falls asleep and he wakes up only in the morning, when the program should already be finished.

Vasya is wondering, what minimum allowable value vv can take to let him write not less than nn lines of code before he falls asleep.

输入格式

The input consists of two integers nn and kk , separated by spaces — the size of the program in lines and the productivity reduction coefficient, 1<=n<=1091<=n<=10^{9} , 2<=k<=102<=k<=10 .

输出格式

Print the only integer — the minimum value of vv that lets Vasya write the program in one night.

输入输出样例

  • 输入#1

    7 2
    

    输出#1

    4
    
  • 输入#2

    59 9
    

    输出#2

    54
    

说明/提示

In the first sample the answer is v=4v=4 . Vasya writes the code in the following portions: first 44 lines, then 22 , then 11 , and then Vasya falls asleep. Thus, he manages to write 4+2+1=74+2+1=7 lines in a night and complete the task.

In the second sample the answer is v=54v=54 . Vasya writes the code in the following portions: 5454 , 66 . The total sum is 54+6=6054+6=60 , that's even more than n=59n=59 .

首页