#abc156b. B - Digits

B - Digits

Score : 200200 points

问题描述

已知整数 NN,要求在基数为 KK 的情况下,求解 NN 所包含的数字位数。

以上为通义千问 qwen-max 翻译,仅供参考。

Problem Statement

Given is an integer NN. Find the number of digits that NN has in base KK.

Notes

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

Constraints

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

Input

Input is given from Standard Input in the following format:

NN KK

Output

Print the number of digits that NN has in base KK.

Sample Input 1

11 2

Sample Output 1

4

In binary, 1111 is represented as 1011.

Sample Input 2

1010101 10

Sample Output 2

7

Sample Input 3

314159265 3

Sample Output 3

18

update @ 2024/3/10 17:15:39

}