/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 456.0 KiB
#2 Accepted 15ms 1.27 MiB
#3 Accepted 9ms 1.27 MiB
#4 Accepted 9ms 1.312 MiB
#5 Accepted 9ms 1.27 MiB
#6 Accepted 9ms 1.27 MiB

Code

#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
#define MOD 1000000007
#define test int t;cin>>t;while(t--)
#define pb push_back
#define vi vector<int>
#define vl vector<ll>
#define F first
#define S second
#define yes cout<<"YES"<<'\n';
#define no cout<<"NO"<<'\n';
#define endl "\n"
#define all(v) v.begin(),v.end()
#define print(v) for(auto it:v) cout<<it<<" "; cout<<endl;
#define srt(v) sort(v.begin(),v.end());
#define rsrt(v) sort(v.rbegin(),v.rend());
#define rvs(v) reverse(v.begin(),v.end());
#define coutv(v) for(auto it:v)cout<<it<<' ';cout<<endl;
#define cinv(v) for(auto &it:v)cin>>it;
#define rall(v) v.rbegin(),v.rend()
#define gcd(a,b) __gcd(a,b)
#define lcm(a,b) (a*b)/gcd(a,b)
#define PI 2*acos(0.0)
#define pr pair<int,int>
#define Tasrik ios_base::sync_with_stdio(0);  cin.tie(0); cout.tie(0);

void abrakadabra()
{
    ll n;
    cin>>n;
    vl ar(n);
    ll x=0;
    for(int i=0; i<n; i++)
    {
        cin>>ar[i];
        x^=ar[i];
    }
    cout<<x<<endl;

}

int main ()
{
    Tasrik;
   // test
    abrakadabra();
    return 0;
}


Information

Submit By
Type
Submission
Problem
P1095 Uncovering the Lone Heart
Contest
Brain Booster #6
Language
C++17 (G++ 13.2.0)
Submit At
2024-10-03 15:34:06
Judged At
2024-10-03 15:34:06
Judged By
Score
100
Total Time
15ms
Peak Memory
1.312 MiB