提交记录 17433
| 提交时间 |
评测时间 |
| 2022-02-21 03:41:08 |
2022-02-21 03:41:11 |
#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[1024 * 1024];
memcpy(BB, B, sizeof(double) << 20);
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 | 38.06 us | 32 KB | Wrong Answer | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-03-17 13:39:20 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠