提交记录 14821
| 提交时间 |
评测时间 |
| 2020-11-13 16:57:19 |
2023-09-03 19:41:19 |
#include <random>
#include <chrono>
std::mt19937 rng(std::chrono::steady_clock::now().time_since_epoch().count());
const int N = 1000;
int A[N][N], B[N][N], C[N][N];
int main() {
for (int i = 0; i < N; ++i) {
for (int j = 0; j < N; ++j) {
A[i][j] = rng() & 0x3fffffff;
B[i][j] = rng() & 0x3fffffff;
C[i][j] = 0;
}
}
return 0;
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 13.184 ms | 11 MB + 468 KB | Accepted | Score: 100 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-03-21 20:53:26 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠