# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
649373 | 2022-10-10T06:33:09 Z | birisi | XOR Sum (info1cup17_xorsum) | C++14 | 1600 ms | 4528 KB |
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector <int> v; int x; for (int i = 0; i < n; i++) { cin >> x; v.push_back(x); } int ans = 0; for (int i = 0; i < v.size(); i++) { for (int j = i; j < v.size(); j++) { ans = ans ^ (v[i] + v[j]); } } cout << ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 6 ms | 212 KB | Output is correct |
2 | Correct | 7 ms | 212 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1690 ms | 4528 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1690 ms | 4528 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 6 ms | 212 KB | Output is correct |
2 | Correct | 7 ms | 212 KB | Output is correct |
3 | Execution timed out | 1689 ms | 840 KB | Time limit exceeded |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 6 ms | 212 KB | Output is correct |
2 | Correct | 7 ms | 212 KB | Output is correct |
3 | Execution timed out | 1690 ms | 4528 KB | Time limit exceeded |
4 | Halted | 0 ms | 0 KB | - |