Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
108668 | 完颜·传统美德 | 拆分自然数 | C++ | 输出超限 | 0 | 98 MS | 264 KB | 390 | 2023-11-04 09:12:10 |
#include<bits/stdc++.h> using namespace std; int n,a[10],b[10],s; void dfs(int step) { if(step==n) { for(int i=1;i<=n;i++) cout<<a[i]; cout<<'\n'; s++; } for(int i=1;i<=n;i++) { if(!b[i]) { a[step+1]=i; b[i]=1; dfs(step+1); b[i]=0; } } } int main() { ios::sync_with_stdio(0); cin.tie(0); cin>>n; dfs(0); cout<<s; return 0; }