文章

105

粉丝

69

获赞

117

访问

54.0k

头像
阶乘和(优雅的递归) 题解:
P1044 北京航空航天大学机试题
发布于2024年5月8日 00:31
阅读数 459

注意数据范围,递归函数里的x也会爆int 

#include <bits/stdc++.h>
using namespace std;
typedef long long LL;

int n; 
LL ans;

LL dfs(LL x)
{
	if(x == 1) return x;
	
	 x = x * dfs(x - 1);
}

int main()
{
	cin >> n;
	
	for(int i = 1; i <= n; i ++)
		ans += dfs(i);
	
	cout << ans;
		
    return 0;
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发