/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 18ms 3.41 MiB
#3 Accepted 16ms 3.359 MiB
#4 Accepted 37ms 3.406 MiB
#5 Accepted 17ms 3.406 MiB
#6 Accepted 17ms 3.359 MiB

Code

/* 
*   @author:- SYEDA SADIATUL JANNAT TUSHI
*   date & time :2024-10-03 20:44:55
*   BANGLADESH , SYLHET. 
*/

#include <bits/stdc++.h>
using namespace std;

#define endl '\n'
#define rep(i, a, b) for(int i = (a); i < (b); i++)
#define ll long long
#define sz(x) (int)x.size()
#define vi vector<ll>
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);

void solve(){
    ll n; cin>>n;
    vi a(n);
    rep(i,0,n){cin>>a[i];}

    unordered_map<ll,ll>freq;

    rep(i,0,n){
        freq[a[i]]++;
    }
    ll ans;

    for( auto &x : freq){
        if(x.second==1){
            ans=x.first;
        }
    }
    cout<< ans <<endl;
}
 
int main() {
    fast
    ll t=1;//cin>>t;
    while (t--) {
        solve();
    }
    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:52:58
Judged At
2024-10-03 15:52:58
Judged By
Score
100
Total Time
37ms
Peak Memory
3.41 MiB