博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LintCode 2. 尾部的零
阅读量:5032 次
发布时间:2019-06-12

本文共 514 字,大约阅读时间需要 1 分钟。

LintCode 2. 尾部的零

  • LintCode
  • 设计一个算法,计算出 n 阶乘中尾部零的个数。

样例

  • 11! = 39916800,因此应该返回 2。

Java 代码

public class Solution {    /*     * @param n: An integer     * @return: An integer, denote the number of trailing zeros in n!     */    public long trailingZeros(long n) {        // write your code here, try to do it without arithmetic operators.        long sum = 0;        while (n > 0) {            n = n / 5;            sum = sum + n;        }        return sum;    }}

参考资料

转载于:https://www.cnblogs.com/hglibin/p/8979497.html

你可能感兴趣的文章
[Leetcode] DP-- 474. Ones and Zeroes
查看>>
80X86寄存器详解<转载>
查看>>
c# aop讲解
查看>>
iterable与iterator
查看>>
返回顶部(动画)
查看>>
webpack+react+antd 单页面应用实例
查看>>
Confluence 6 SQL Server 数据库驱动修改
查看>>
Confluence 6 通过 SSL 或 HTTPS 运行 - 备注和问题解决
查看>>
【47.76%】【Round #380B】Spotlights
查看>>
Git(使用码云)
查看>>
分享Java web 开发必游之路
查看>>
IIS初始化(预加载),解决第一次访问慢,程序池被回收问题(转载)
查看>>
Bean的Scope
查看>>
【BZOJ】3142: [Hnoi2013]数列
查看>>
http初探
查看>>
W3C标准以及规范
查看>>
elasticsearch的安装
查看>>
__next__()
查看>>
爬取:中国大学排名
查看>>
聊天室(C++客户端+Pyhton服务器)_1.框架搭设
查看>>