1 条题解

  • 0
    @ 2023-8-24 11:17:06
    #include<bits/stdc++.h>
    using namespace std;
    int D(int n)
    {
    	if(n==1)return 0;
    	if(n==2)return 1;
    	else return (n-1)*(D(n-1)+D(n-2));
    }
    int main()
    {
    	int n;
    	cin>>n;
    	cout<<D(n);
    	return 0;
    }
    
    • 1

    信息

    ID
    691
    时间
    1000ms
    内存
    16MiB
    难度
    5
    标签
    递交数
    19
    已通过
    14
    上传者