提交记录 14868
| 提交时间 |
评测时间 |
| 2020-11-14 01:31:06 |
2020-11-14 01:31:07 |
// fileName: test_O0_Gene.cpp
#pragma GCC optimize("O0")
#include <cstdio>
#include <random>
#include <chrono>
std::mt19937 rng(std::chrono::steady_clock::now().time_since_epoch().count());
typedef unsigned int UI;
typedef unsigned long long ULL;
const UI Mod = 998244353;
const int N = 1500;
UI A[N][N], B[N][N], C[N][N];
void Mul() {}
#ifdef PKRBT
int main() {
#else
void matrix_multiply(int, const double *, const double *, double *) {
#endif
for (int i = 0; i < N; ++i) {
for (int j = 0; j < N; ++j) {
A[i][j] = rng() % Mod;
B[i][j] = rng() % Mod;
C[i][j] = 0;
}
}
Mul();
UI Ans = 0;
for (int i = 0; i < N; ++i)
for (int j = 0; j < N; ++j)
Ans ^= C[i][j];
printf("%d\n", Ans);
return 0;
}
| Compilation | N/A | N/A | Compile Error | Score: N/A | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-03-21 19:12:54 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠