小学奥数 7657 连乘积末尾0的个数 python
生活随笔
收集整理的這篇文章主要介紹了
小学奥数 7657 连乘积末尾0的个数 python
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
http:// http://noi.openjudge.cn/math/7657/
"""小學奧數 7657 連乘積末尾0的個數http://noi.openjudge.cn/math/7657/"""def five(a):res=0while a%5==0:a/=5res+=1return resdef two(a):res=0while a%2==0:a/=2res+=1return resa,b=map(int,input().split())m=0 n=0i=a while i<=b:m+=two(i)n+=five(i)i+=1ans=min(m,n)print( ans)C++代碼:
#include <cstdio> #define min(a, b) (a < b ? a : b)inline int five(int a) {int res = 0;while (a % 5 == 0){a /= 5;res++;}return res; }inline int two(int a) {int res = 0;while (a % 2 == 0){a /= 2;res++;}return res; }int main() {int a, b, m = 0, n = 0;scanf("%d%d", &a, &b);for (int i = a; i <= b; i++){m += two(i);n += five(i);}printf("%d", min(m, n));return 0; }總結
以上是生活随笔為你收集整理的小学奥数 7657 连乘积末尾0的个数 python的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 1.13 编程基础之综合应用 10 判决
- 下一篇: GIT上传下载报错:[You do no