mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-02 14:12:17 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
"translatedContent": "<p> <code>f(x)</code> 是 <code>x!</code> 末尾是 0 的数量。回想一下 <code>x! = 1 * 2 * 3 * ... * x</code>,且 <code>0! = 1</code> 。</p>\n\n<ul>\n\t<li>例如, <code>f(3) = 0</code> ,因为 <code>3! = 6</code> 的末尾没有 0 ;而 <code>f(11) = 2</code> ,因为 <code>11!= 39916800</code> 末端有 2 个 0 。</li>\n</ul>\n\n<p>给定 <code>k</code>,找出返回能满足 <code>f(x) = k</code> 的非负整数 <code>x</code> 的数量。</p>\n\n<p> </p>\n\n<p><strong>示例 1:</strong><strong> </strong></p>\n\n<pre>\n<strong>输入:</strong>k = 0<strong>\n输出:</strong>5<strong>\n解释:</strong>0!, 1!, 2!, 3!, 和 4! 均符合 k = 0 的条件。\n</pre>\n\n<p><strong>示例 2:</strong></p>\n\n<pre>\n<strong>输入:</strong>k = 5\n<strong>输出:</strong>0\n<strong>解释:</strong>没有匹配到这样的 x!,符合 k = 5 的条件。</pre>\n\n<p><strong>示例 3:</strong></p>\n\n<pre>\n<strong>输入:</strong> k = 3\n<strong>输出:</strong> 5\n</pre>\n\n<p> </p>\n\n<p><strong>提示:</strong></p>\n\n<ul>\n\t<li><code>0 <= k <= 10<sup>9</sup></code></li>\n</ul>\n",
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Hard",
|
||||
"likes": 82,
|
||||
"likes": 83,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[{\"title\": \"Factorial Trailing Zeroes\", \"titleSlug\": \"factorial-trailing-zeroes\", \"difficulty\": \"Medium\", \"translatedTitle\": \"\\u9636\\u4e58\\u540e\\u7684\\u96f6\"}]",
|
||||
@@ -143,7 +143,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"6.7K\", \"totalSubmission\": \"16.9K\", \"totalAcceptedRaw\": 6746, \"totalSubmissionRaw\": 16938, \"acRate\": \"39.8%\"}",
|
||||
"stats": "{\"totalAccepted\": \"6.8K\", \"totalSubmission\": \"17.1K\", \"totalAcceptedRaw\": 6802, \"totalSubmissionRaw\": 17087, \"acRate\": \"39.8%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
|
Reference in New Issue
Block a user