답안 #1104714

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1104714 2024-10-24T09:12:57 Z SulA XOR Sum (info1cup17_xorsum) C++17
11 / 100
272 ms 4916 KB
#include <bits/stdc++.h>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
using namespace __gnu_pbds;

signed main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr); cout.tie(nullptr);

    int n; cin >> n;
    const int K = 5000;
    bitset<2*K> el, pairs;

    for (int i = 0; i < n; i++) {
        int x; cin >> x;
        el.flip(x);
        pairs ^= el << x;
    }
    int ans = 0;
    for (int i = 0; i < 2*K; i++) {
        ans ^= (pairs[i])*i;
    }
    cout << ans;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 3 ms 592 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 272 ms 4916 KB Output is correct
2 Correct 255 ms 4680 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 272 ms 4916 KB Output is correct
2 Correct 255 ms 4680 KB Output is correct
3 Runtime error 3 ms 592 KB Execution killed with signal 6
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 3 ms 592 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 3 ms 592 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -