Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
54788 | 杨竣周 | 彩票 | C++ | 输出格式错误 | 0 | 1 MS | 252 KB | 531 | 2022-07-29 17:13:48 |
#include<bits/stdc++.h> using namespace std; int k,s[14]; void _(){ for(int i1=1;i1<=k-5;i1++){ for(int i2=i1+1;i2<=k-4;i2++){ for(int i3=i2+1;i3<=k-3;i3++){ for(int i4=i3+1;i4<=k-2;i4++){ for(int i5=i4+1;i5<=k-1;i5++){ for(int i6=i5+1;i6<=k;i6++){ printf("%d %d %d %d %d %d\n",s[i1],s[i2],s[i3],s[i4],s[i5],s[i6]); } } } } } } } int main(){ scanf("%d",&k); do{ for(int i=1;i<=k;i++) scanf("%d",&s[i]); _(); scanf("%d",&k); }while(k); return 0; }