3 条题解

  • 0
    @ 2023-7-16 10:18:03
    #include<iostream>
    using namespace std;
    int main(){
    	int n;
    	cin>>n;
    	int s=0;
    	int t=1;
    	if(n!=0){
    		int a=1;
    		for(int j=1;j<=n;j++){
    			for(int i=1;i<=t;i++){
    				a=a*i;
    			}
    			t++;
    			if(j%2!=0){
    				s+=a;
    			}
    			else{
    				s-=a;
    			}
    			a=1;
    		}
    		cout<<s;
    	}
    	else{
    		cout<<"1";
    	}
    	return 0;
    }
    

    信息

    ID
    515
    时间
    1000ms
    内存
    128MiB
    难度
    5
    标签
    递交数
    193
    已通过
    75
    上传者