#abc156b. B - Digits
B - Digits
Score : points
问题描述
已知整数 ,要求在基数为 的情况下,求解 所包含的数字位数。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
Given is an integer . Find the number of digits that has in base .
Notes
For information on base- representation, see Positional notation - Wikipedia.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the number of digits that has in base .
Sample Input 1
11 2
Sample Output 1
4
In binary, 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
相关
在下列比赛中: