2018 第九届蓝桥杯省赛B组 C++/c 乘积尾零

版权声明:本文为博主原创文章,未经博主允许不得转载,欢迎添加友链。 https://blog.csdn.net/qq_42835910/article/details/88727089

如下的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 

分析:所有的10都是2和5组成的,统计2和5出现的次数,两者出现次数最小值即为答案。

#include <iostream>
using namespace std;
int main(int argc, char** argv) {
	int x, n5 = 0, n2 = 0;
	for(int i = 0; i < 10; i++){
		for(int j = 0; j < 10; j++){
			cin>> x;
			while( x % 5 == 0){
				x /= 5;
				n5++;
			}
			while( x % 2 == 0){
				x /= 2;
				n2++;
			}
		}
	} 
	cout<< min(n2,n5)<< endl;
	return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_42835910/article/details/88727089