| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 82627 | sh25_zhuhy | 图形打印长方形 | C++ | Accepted | 0 MS | 240 KB | 224 | 2026-01-16 16:18:14 |
#include<iostream> using namespace std; int main(){ int m,n; cin>>n>>m; for(int i=1;i<=n;++i){ for(int j=1;j<=m;++j){ cout<<'@'; } cout<<'\n'; } return 0; }