| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 441450 | 沈昊坤 | 【C3-1】打印全递增矩形 | C++ | 通过 | 100 | 2 MS | 252 KB | 212 | 2026-05-21 20:04:03 |
#include<bits/stdc++.h> using namespace std; main(){ int n,m; long long t=1; cin>>n>>m; for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ cout<<t<<" "; t++; } cout<<endl; } return 0; }