Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
108089 | 付明澄 | 全排列问题 | C++ | 解答错误 | 20 | 20 MS | 192 KB | 334 | 2023-10-30 19:35:04 |
#include<cstdio> #include<algorithm> #define rep(a,b,c) for(register int a=b;a<=c;a++) using namespace std; int x[11]; int main() { int n,m=1; scanf("%d",&n); rep(i,1,n) x[i]=i,printf("%d ",i); while(next_permutation(x+1,x+1+n)) { printf("\n");rep(i,1,n) printf("%d ",x[i]); m++; } printf("\n%d",m); }