提交记录 17432
| 提交时间 |
评测时间 |
| 2022-02-21 03:40:46 |
2022-02-21 03:40:50 |
#include <bits/stdc++.h>
#define idx(i, j) ((i) * n + (j))
void matrix_multiply(int n, const double *A, const double *B, double *C) {
double *BB = const_cast<double*> (B);
for (int i = 0; i < n; i++) for (int j = i + 1; j < n; j++) {
std::swap(BB[idx(i, j)], BB[idx(j, i)]);
}
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 34.68 us | 32 KB | Runtime Error | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-03-17 13:46:14 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠