# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
931070 | 2024-02-21T07:47:49 Z | hugsfromadicto | XOR Sum (info1cup17_xorsum) | C++14 | 1600 ms | 2172 KB |
#pragma GCC optimize("O3") #include <bits/stdc++.h> #define int long long using namespace std; const int mxN = 2e5+5; int a[mxN]; void _() { int n; cin >> n; int res = 0; for(int i = 0; i < n; ++i) { cin >> a[i]; for(int j = 0; j <= i; ++j) { res ^= (a[i] + a[j]); } } cout << res; } main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int tc = 1; //cin>>tc; while(tc--) { _(); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 600 KB | Output is correct |
2 | Correct | 2 ms | 348 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1629 ms | 2172 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1629 ms | 2172 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 600 KB | Output is correct |
2 | Correct | 2 ms | 348 KB | Output is correct |
3 | Correct | 891 ms | 2048 KB | Output is correct |
4 | Correct | 879 ms | 2148 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 600 KB | Output is correct |
2 | Correct | 2 ms | 348 KB | Output is correct |
3 | Execution timed out | 1629 ms | 2172 KB | Time limit exceeded |
4 | Halted | 0 ms | 0 KB | - |