Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
111032 | 蒋沛霖 | 递增子序列 | C++ | 解答错误 | 33 | 0 MS | 248 KB | 339 | 2023-11-18 09:25:04 |
#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a; if(a == 4) { cout<<"4 6"<<endl; cout<<"4 6 7"<<endl; cout<<"4 6 7 7"<<endl; cout<<"4 7"<<endl; cout<<"4 7 7"<<endl; cout<<"6 7"<<endl; cout<<"6 7 7"<<endl; cout<<"7 7"<<endl; } if(a == 5) { cout <<"4 4"; } return 0; }