tuoran @ 2024-08-23 07:44:08
#include<bits/stdc++.h>
using namespace std;
int main(){
int n,ans=0;
cin>>n;
for(int i=1;i<=n;i++){
int f=1;
for(int j=1;j<=i;j++)
f*=j;
ans+=f;
}
cout<<ans<<endl;
return 0;
}
by Jacky0909 @ 2024-08-23 07:46:45
@tuoran 你是不是没开高精?
by Lwx112412 @ 2024-08-23 08:06:33
高精度,先算乘,再算加
by tuoran @ 2024-08-23 08:09:00
不会开高精怎么办
by Lwx112412 @ 2024-08-23 08:11:15
用py
by bfs_MST @ 2024-08-23 08:32:00
@tuoran 用 __int128
by Lovol1 @ 2024-08-23 09:06:47
@tuoran double高精
by tuoran @ 2024-08-23 17:51:11
听不懂啊求代码演示