★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公衆號:山青詠芝(shanqingyongzhi)
➤博客園地址:山青詠芝(https://www.cnblogs.com/strengthen/)
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址: http://www.javashuo.com/article/p-zzuzffkt-me.html
➤若是連接不是山青詠芝的博客園地址,則多是爬取做者的文章。
➤原文已修改更新!強烈建議點擊原文地址閱讀!支持做者!支持原創!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★html
Let f(x)
be the number of zeroes at the end of x!
. (Recall that x! = 1 * 2 * 3 * ... * x
, and by convention, 0! = 1
.)git
For example, f(3) = 0
because 3! = 6 has no zeroes at the end, while f(11) = 2
because 11! = 39916800 has 2 zeroes at the end. Given K
, find how many non-negative integers x
have the property that f(x) = K
.github
Example 1: Input: K = 0 Output: 5 Explanation: 0!, 1!, 2!, 3!, and 4! end with K = 0 zeroes. Example 2: Input: K = 5 Output: 0 Explanation: There is no x such that x! ends in K = 5 zeroes.
Note:微信
K
will be an integer in the range [0, 10^9]
. f(x)
是 x!
末尾是0的數量。(回想一下 x! = 1 * 2 * 3 * ... * x
,且0! = 1
)函數
例如, f(3) = 0
,由於3! = 6的末尾沒有0;而 f(11) = 2
,由於11!= 39916800末端有2個0。給定 K
,找出多少個非負整數x
,有 f(x) = K
的性質。spa
示例 1: 輸入:K = 0 輸出:5 解釋: 0!, 1!, 2!, 3!, and 4! 均符合 K = 0 的條件。 示例 2: 輸入:K = 5 輸出:0 解釋:沒有匹配到這樣的 x!,符合K = 5 的條件。
注意:code
K
是範圍在 [0, 10^9]
的整數。htm
1 class Solution { 2 func preimageSizeFZF(_ K: Int) -> Int { 3 if K < 5 {return 5} 4 var base:Int = 1 5 while(base * 5 + 1 <= K) 6 { 7 base = base * 5 + 1 8 } 9 if K / base == 5 10 { 11 return 0 12 } 13 return preimageSizeFZF(K % base) 14 } 15 }
4msblog
1 class Solution { 2 func preimageSizeFZF(_ K: Int) -> Int { 3 var start = 1, end = Int.max, mid = start + (end - start) / 2 4 5 while start < end { 6 let candidate = trailingZeroes(mid) 7 if candidate > K { 8 end = mid - 1 9 } else if candidate < K { 10 start = mid + 1 11 } else { 12 return 5 13 } 14 mid = start + (end - start) / 2 15 } 16 return 0 17 } 18 19 func trailingZeroes(_ n: Int) -> Int { 20 var n = n, current = 0 21 while n > 1 { 22 n /= 5 23 current += n 24 } 25 26 return current 27 } 28 }