给定一个非负整数 n ,返回 n! 结果的末尾为 0 的数量。 n! 是指自然数 n! 的阶乘,即 : 。 特殊的, 0 的阶乘是 1 。 数据范围: 进阶:空间复杂度 ,时间复杂度 复杂度要求: 不大于
示例1
输入
3
输出
0
说明
3!=6
示例2
输入
5
输出
1
说明
5!=120
示例3
输入
1000000000
输出
249999998
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * the number of 0 * @param n long长整型 the number * @return long长整型 */ public long thenumberof0 (long n) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * the number of 0 * @param n long长整型 the number * @return long长整型 */ long long thenumberof0(long long n) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # the number of 0 # @param n long长整型 the number # @return long长整型 # class Solution: def thenumberof0(self , n ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * the number of 0 * @param n long长整型 the number * @return long长整型 */ public long thenumberof0 (long n) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * the number of 0 * @param n long长整型 the number * @return long长整型 */ function thenumberof0( n ) { // write code here } module.exports = { thenumberof0 : thenumberof0 };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # the number of 0 # @param n long长整型 the number # @return long长整型 # class Solution: def thenumberof0(self , n: int) -> int: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * the number of 0 * @param n long长整型 the number * @return long长整型 */ func thenumberof0( n int64 ) int64 { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * the number of 0 * @param n long长整型 the number * @return long长整型 */ long long thenumberof0(long long n ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # the number of 0 # @param n long长整型 the number # @return long长整型 # class Solution def thenumberof0(n) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * the number of 0 * @param n long长整型 the number * @return long长整型 */ def thenumberof0(n: Long): Long = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * the number of 0 * @param n long长整型 the number * @return long长整型 */ fun thenumberof0(n: Long): Long { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * the number of 0 * @param n long长整型 the number * @return long长整型 */ public long thenumberof0 (long n) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * the number of 0 * @param n long长整型 the number * @return long长整型 */ export function thenumberof0(n: number): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * the number of 0 * @param n long长整型 the number * @return long长整型 */ func thenumberof0 ( _ n: Int64) -> Int64 { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * the number of 0 * @param n long长整型 the number * @return long长整型 */ pub fn thenumberof0(&self, n: i64) -> i64 { // write code here } }
3
0
5
1
1000000000
249999998