-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsmallestGoodBase.py
40 lines (37 loc) · 1.04 KB
/
smallestGoodBase.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# -*- coding: utf-8 -*-
'''
For an integer n, we call k>=2 a good base of n, if all digits of n base k are 1.
Now given a string representing n, you should return the smallest good base of n in string format.
Example 1:
Input: "13"
Output: "3"
Explanation: 13 base 3 is 111.
Example 2:
Input: "4681"
Output: "8"
Explanation: 4681 base 8 is 11111.
Example 3:
Input: "1000000000000000000"
Output: "999999999999999999"
Explanation: 1000000000000000000 base 999999999999999999 is 11.
Note:
The range of n is [3, 10^18].
The string representing n is always valid and will not have leading zeros.
'''
"""
:type n: str
:rtype: str
"""
import math
class Solution:
def smallestGoodBase(self, n):
n = int(n)
maxLength = int(math.log(n,2))
for m in range(maxLength, 1, -1):
k = int(n**m**-1)
if (k**(m+1) - 1)//(k - 1) == n:
return str(k)
return str(n-1)
if __name__ == "__main__":
sol = Solution()
print(sol.smallestGoodBase(raw_input('Enter a number: ')))