101561: [AtCoder]ABC156 B - Digits

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $200$ points

Problem Statement

Given is an integer $N$. Find the number of digits that $N$ has in base $K$.

Notes

For information on base-$K$ representation, see Positional notation - Wikipedia.

Constraints

  • All values in input are integers.
  • $1 \leq N \leq 10^9$
  • $2 \leq K \leq 10$

Input

Input is given from Standard Input in the following format:

$N$ $K$

Output

Print the number of digits that $N$ has in base $K$.


Sample Input 1

11 2

Sample Output 1

4

In binary, $11$ is represented as 1011.


Sample Input 2

1010101 10

Sample Output 2

7

Sample Input 3

314159265 3

Sample Output 3

18

Input

题意翻译

给定两个整数 $ N $ 和 $ K $ ,请求出整数 $ N $ 在 $ K $ 进制下的位数。

加入题单

上一题 下一题 算法标签: