Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
136896 | 林扬皓bylz | 组合问题 | C++ | 通过 | 100 | 4 MS | 240 KB | 305 | 2024-03-09 16:07:52 |
#include<bits/stdc++.h> using namespace std; int n,m,a[30]; void dfs(int k) { if(m==k) { 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]++) dfs(k+1); } } int main() { cin>>n>>m; dfs(0); return 0; }