Submission #522715

# Submission time Handle Problem Language Result Execution time Memory
522715 2022-02-05T14:04:17 Z Theo830 XOR Sum (info1cup17_xorsum) C++17
7 / 100
1600 ms 12716 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll INF = 1e9+7;
const ll MOD = 998244353;
typedef pair<ll,ll> ii;
#define iii pair<ll,ii>
#define f(i,a,b) for(ll i = a;i < b;i++)
#define pb push_back
#define vll vector<ll>
#define F first
#define S second
#define all(x) (x).begin(), (x).end()
///I hope I will get uprating and don't make mistakes
///I will never stop programming
///sqrt(-1) Love C++
///Please don't hack me
///@TheofanisOrfanou Theo830
///Think different approaches (bs,dp,greedy,graphs,shortest paths,mst)
///Stay Calm
///Look for special cases
///Beware of overflow and array bounds
///Think the problem backwards
///Training
int main(void){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    ll n;
    cin>>n;
    ll arr[n];
    ll ans = 0;
    f(i,0,n){
        cin>>arr[i];
    }
    f(i,0,n){
        f(j,i,n){
            ans ^= arr[i] + arr[j];
        }
    }
    cout<<ans<<"\n";
}
# Verdict Execution time Memory Grader output
1 Correct 6 ms 332 KB Output is correct
2 Correct 6 ms 320 KB Output is correct
# Verdict Execution time Memory Grader output
1 Execution timed out 1650 ms 12716 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1650 ms 12716 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 6 ms 332 KB Output is correct
2 Correct 6 ms 320 KB Output is correct
3 Execution timed out 1645 ms 1956 KB Time limit exceeded
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 6 ms 332 KB Output is correct
2 Correct 6 ms 320 KB Output is correct
3 Execution timed out 1650 ms 12716 KB Time limit exceeded
4 Halted 0 ms 0 KB -