Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
104932 xjy 军事情报 C++ 解答错误 0 0 MS 248 KB 215 2023-10-04 11:13:20

Tests(0/5):


#include<bits/stdc++.h> #define ll long long using namespace std; int s[23]={-1,1,1}; int main() { int n; cin>>n; for(int i=3;i<=23;i++) { s[i]=(n-1)*s[i-1]+s[i-2]; } cout<<s[n]; return 0; }


测评信息: