QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#593881 | #1. I/O Test | Capps | Compile Error | / | / | C++20 | 487b | 2024-09-27 16:39:35 | 2024-09-27 16:39:35 |
Judging History
config.txt
#include <bits/stdc++.h> using i64 = long long; using u64 = unsigned long long; std::mt19937_64 rng(u64(new char)); int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(nullptr); int x, y; std::cin >> x >> y; constexpr int n = 10'000'000; std::vector<int> a(n); for (int i = 0; i < n; i++) { a[i] = rng(); } std::sort(begin(a), end(a)); std::cout << ((x + y) ^ a[0] ^ a[0]); return 0; }
input_test
2 3
output_test
5
详细
Invalid Configuration File: failed to read Nin and Nout