乘积尾零

如下的 10 行数据,每行有 10 个整数,请你求出它们的乘积的末尾有多少个零?

5650 4542 3554 473 946 4114 3871 9073 90 4329 2758 7949 6113 5659 5245 7432 3051 4434 6704 3594 9937 1173 6866 3397 4759 7557 3070 2287 1453 9899 1486 5722 3135 1170 4014 5510 5120 729 2880 9019 2049 698 4582 4346 4427 646 9742 7340 1230 7683 5693 7015 6887 7381 4172 4341 2909 2027 7355 5649 6701 6645 1671 5978 2704 9926 295 3125 3878 6785 2066 4247 4800 1578 6652 4616 1113 6205 3264 2915 3966 5291 2904 1285 2193 1428 2265 8730 9436 7074 689 5510 8243 6114 337 4096 8199 7313 3685 211

 思路:质数 2*5 = 10 依次分解质因数,统计因数2,5的个数,找出个数少的那个。

#include 
using namespace std;

int main()
{
    int cnt2=0,cnt5=0;
    for (int i=1;i<=10;i++)
    {
        for (int j=1;j<=10;j++)
        {
            int x;
            cin>>x;
            while (x%2==0) cnt2++,x/=2;
            while (x%5==0) cnt5++,x/=5;
        }
    }
    cout<

理论上,Python 3 中的整数没有上限(只要不超出内存空间)。 

也就是说可以使用python硬性求解。

data = """5650 4542 3554 473 946 4114 3871 9073 90 4329 
2758 7949 6113 5659 5245 7432 3051 4434 6704 3594 
9937 1173 6866 3397 4759 7557 3070 2287 1453 9899 
1486 5722 3135 1170 4014 5510 5120 729 2880 9019 
2049 698 4582 4346 4427 646 9742 7340 1230 7683 
5693 7015 6887 7381 4172 4341 2909 2027 7355 5649 
6701 6645 1671 5978 2704 9926 295 3125 3878 6785 
2066 4247 4800 1578 6652 4616 1113 6205 3264 2915 
3966 5291 2904 1285 2193 1428 2265 8730 9436 7074 
689 5510 8243 6114 337 4096 8199 7313 3685 211"""

cnt = 0
res = 1
data = list(data.split(" "))
for i in data:
    res *= int(i)
res = str(res)[::-1]
for j in res:
    if j == "0":
        cnt += 1
    else:
        break
print(cnt)

 Python 在语言运用层屏蔽了很多琐碎的活,比如内存分配,所以,我们在使用字符串、列表或字典等对象时,根本不用操心。整数类型的转变,也是出于这样的便利目的。(坏处是牺牲了一些效率,在此就不谈了)。

你可能感兴趣的:(c++,算法,开发语言,python)