QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#593885#1. I/O TestCappsCompile Error//Python3505b2024-09-27 16:40:232024-09-27 16:40:24

Judging History

你现在查看的是最新测评结果

  • [2024-09-27 16:40:24]
  • 评测
  • [2024-09-27 16:40:23]
  • 提交

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

print("2 3")

output_test

print("5")

Details

Invalid Configuration File: failed to read Nin and Nout