博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Factorial Trailing Zeroes
阅读量:6688 次
发布时间:2019-06-25

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

Given an integer n, return the number of trailing zeroes in n!.

Note: Your solution should be in logarithmic time complexity.

Credits:

Special thanks to  for adding this problem and creating all test cases.

 

 to see which companies asked this question

答案解释可以看 陈皓在leetcode Discuss上的答案:
int trailingZeroes(int n) {    int result = 0;    for (long long i = 5; n / i>0; i *= 5) {        result += (n / i);    }    return result;}

 

转载于:https://www.cnblogs.com/sdlwlxf/p/5140241.html

你可能感兴趣的文章
Linux卸载系统自带的httpd的方法
查看>>
弹出菜单效果
查看>>
SQL常用语句集合(不断更新)
查看>>
回顾2014,展望2015
查看>>
BIOS基础知识(下)
查看>>
Iterator 和 Iterable 区别和联系
查看>>
经典SQL语句大全
查看>>
测试LCD1602的显示,显示时间,提示语
查看>>
PHP常见的加密技术
查看>>
Asp.net读取AD域信息的方法(一)
查看>>
两道题学习动态规划
查看>>
mysql实战31 | 误删数据后除了跑路,还能怎么办?
查看>>
ASP.NET MVC Razor
查看>>
python:使用OO和工厂模式解决问题
查看>>
C++学习-2
查看>>
GAITC 2019全球人工智能技术大会(南京)
查看>>
使用gradle生成protobuf
查看>>
transition transform animate的使用
查看>>
【翻译】Ext JS最新技巧——2014-5-12
查看>>
全局临时表
查看>>