Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
136382 | 黄宇翔 | 组合问题 | C++ | 解答错误 | 0 | 0 MS | 240 KB | 324 | 2024-03-09 09:02:34 |
#include<bits/stdc++.h> using namespace std; int n,m,a[30]; void cpuzhale(int k){ if(k==n){ for(int i=0;i<k;i++){ cout<<a[i]; }cout<<endl; } else{a[k]=a[k-1]+1; for(;a[k]<=n;a[k]++){ cpuzhale(k+1); } } } int main(){ int n,m; cin>>n>>m; cpuzhale(0); return 0; }