leet-code/src/main/java/leetcode/editor/cn/FactorialTrailingZeroes.java
2022-03-25 22:20:21 +08:00

68 lines
1.3 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//给定一个整数 n ,返回 n! 结果中尾随零的数量。
//
// 提示 n! = n * (n - 1) * (n - 2) * ... * 3 * 2 * 1
//
//
//
// 示例 1
//
//
//输入n = 3
//输出0
//解释3! = 6 ,不含尾随 0
//
//
// 示例 2
//
//
//输入n = 5
//输出1
//解释5! = 120 ,有一个尾随 0
//
//
// 示例 3
//
//
//输入n = 0
//输出0
//
//
//
//
// 提示:
//
//
// 0 <= n <= 10⁴
//
//
//
//
// 进阶:你可以设计并实现对数时间复杂度的算法来解决此问题吗?
// Related Topics 数学 👍 639 👎 0
package leetcode.editor.cn;
//172:阶乘后的零
public class FactorialTrailingZeroes {
public static void main(String[] args) {
Solution solution = new FactorialTrailingZeroes().new Solution();
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int trailingZeroes(int n) {
int count = 0;
for (int i = 1; i <= n; i++) {
int temp = i;
while (temp % 5 == 0) {
count++;
temp /= 5;
}
}
return count;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}