| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 83948 | sh25_xuws | 图形打印长方形 | C++ | Accepted | 0 MS | 252 KB | 208 | 2026-02-04 19:54:00 |
#include<iostream> using namespace std; int main(){ int m,n; cin>>n>>m; for(int i=0;i<n;++i){ for(int j=0;j<m;++j) cout<<'@'; cout<<'\n'; } return 0;}