Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
111182 | 毛泓博(做题专用,大号Fess) | 递增子序列 | C++ | 输出格式错误 | 0 | 0 MS | 256 KB | 250 | 2023-11-18 13:15:57 |
#include<bits/stdc++.h> using namespace std; int n; string s,s2; int main() { cin>>n>>s>>s2; if(s=="4"&&s2=="6") cout<<"\n4 6\n4 6 7\n4 6 7 7\n4 7\n4 7 7\n6 7\n6 7 7\n7 7"; else if(s=="4"&&s2=="4") cout<<"\n4 4"; return 0; }