| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 127942 | 饶晋吉 | 图像相似度 | C++ | Output Limit Exceeded | 1 MS | 280 KB | 330 | 2025-07-30 13:20:04 |
#include<iostream> using namespace std; int main() { int n, m, a[101][101]; cin >> n >> m; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { cin >> a[j][i]; } } for (int i = 0; i < m; i++) { for (int j = 0; j < n; j++) { cout << a[i][j] << " "; } cout << endl; } return 0; }