| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 77473 | sh25_shenpy | 二维数组转一维数组 | C++ | Accepted | 1 MS | 240 KB | 259 | 2025-12-26 14:14:05 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int a[n][n]; for(int i=0;i<n;++i){ for(int j=0;j<n;++j){ cin>>a[i][j]; cout<<a[i][j]<<" "; } } return 0; }