求表达式

公司:哔哩哔哩
类型:数学
题目
思路:暴力枚举计算 n ! n! 的方式,即除5统计。

#include <bits/stdc++.h>
using namespace std;
//const int N = 1e5+5;
//int arr[N];
int main(){
	int n;
	int res = 0;
	scanf("%d", &n);
	for(int i = 1; i <=n; i++){
		int t = i;
		while(t){
			res+=t/5;
			t/=5;
		}
	}
	printf("%d", res);
	return 0;
} 
发布了1205 篇原创文章 · 获赞 54 · 访问量 9万+

猜你喜欢

转载自blog.csdn.net/SYaoJun/article/details/105128782