# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
926148 | 2024-02-12T15:40:30 Z | Zakir060 | XOR Sum (info1cup17_xorsum) | C++17 | 1600 ms | 8276 KB |
#include <bits/stdc++.h> using namespace std; #define int long long void xakir() { int n; cin>>n; vector<int>v(n+1); for(int i=1;i<=n;i++) { cin>>v[i]; } int res=0; for(int i=1;i<=n;i++) { for(int j=i;j<=n;j++) { res^=(v[i]+v[j]); } } cout<<res; } signed main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); cout.setf( ios::fixed); cout.precision(4); system("color 0A"); int t=1; //cin>>t; while(t--) { xakir(); } /** ░█████╗░░░░░░░░░░░░░░░ ██╔══██╗░░██╗░░░░██╗░░ ██║░░╚═╝██████╗██████╗ ██║░░██╗╚═██╔═╝╚═██╔═╝ ╚█████╔╝░░╚═╝░░░░╚═╝░░ ░╚════╝░░░░░░░░░░░░░░░ **/ }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 348 KB | Output is correct |
2 | Correct | 5 ms | 548 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1626 ms | 8276 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1626 ms | 8276 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 348 KB | Output is correct |
2 | Correct | 5 ms | 548 KB | Output is correct |
3 | Execution timed out | 1649 ms | 2156 KB | Time limit exceeded |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 348 KB | Output is correct |
2 | Correct | 5 ms | 548 KB | Output is correct |
3 | Execution timed out | 1626 ms | 8276 KB | Time limit exceeded |
4 | Halted | 0 ms | 0 KB | - |