/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 23ms 3.02 MiB
#3 Accepted 23ms 3.125 MiB
#4 Accepted 23ms 3.02 MiB
#5 Accepted 23ms 3.02 MiB
#6 Accepted 23ms 3.02 MiB

Code

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

#define ll long long
#define vc vector<int> 
#define pr pair<int,int>
#define PB push_back
#define MP make_pair
#define loop(i,a,b) for(int i = a; i<= b; i++)
#define YES cout<<"YES"<<endl;
#define NO cout<<"NO"<<endl;
#define bb begin()
#define ee end()
#define ff first
#define ss second
#define fastio ios::sync_with_stdio(false);cin.tie(NULL);

void solve();

int main()
{
    fastio
    int t;t=1;
    while(t--) solve();
    return 0;
}

void solve(){
    int n;cin>>n;
    map<int,int>mp;
    vc a(n);for (int i = 0; i < n; i++)
    {
        cin>>a[i];
        mp[a[i]]++;
    }
    int x;
    for(auto& it:mp){
        if(it.second==1){
            cout<<it.first<<endl;
            break;
        }
    }
    
}

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:39:49
Judged At
2024-10-03 15:39:49
Judged By
Score
100
Total Time
23ms
Peak Memory
3.125 MiB