/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 25ms 3.52 MiB
#3 Accepted 29ms 3.531 MiB
#4 Accepted 26ms 3.574 MiB
#5 Accepted 52ms 3.473 MiB
#6 Accepted 41ms 3.418 MiB

Code

/*
 *Copyright (c) Swadheen Islam Robi (SIR01)
 *Created on Thu Oct 03 2024 8:52:34 PM
 */
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define pie 2*(acos(0.0))
#define yes cout<<"YES\n"
#define no cout<<"NO\n"
#define pb push_back
#define endl "\n"
#define lcm(a,b) (a*b)/(__gcd<ll>(a,b))
#define mod 1000000007
#define srt(v) sort(v.begin(),v.end())
#define rsrt(v) sort(v.rbegin(),v.rend())
#define ALLAHU_AKBAR ios::sync_with_stdio(false); cin.tie(nullptr);

void sir()
{
    // int y
    ll n; cin>>n;
    map<ll,ll>mp;
    for(ll i=0; i<n; i++)
    {
        ll x;
        cin>>x;
        mp[x]++;
    }
    for(auto &p:mp)
    {
        if(p.second==1){
            cout<<p.first<<endl; return;
        }
    }
}

int main() {
    ALLAHU_AKBAR

    ll t = 1;
    //cin>>t;
    while(t--)
    {
        sir();
    }
    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:59:24
Judged At
2024-10-03 15:59:24
Judged By
Score
100
Total Time
52ms
Peak Memory
3.574 MiB