Accepted
Code
#include<bits/stdc++.h>
using namespace std;
int main(){
int n, a, ans = 0;
cin >> n;
map<int, int> mp;
for (int i = 0; i < n; i++){
cin >> a;
mp[a]++;
}
for (auto [f, s] : mp){
if (s == 1) ans = f;
}
cout << ans << endl;
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:38:39
- Judged At
- 2024-12-17 11:36:28
- Judged By
- Score
- 100
- Total Time
- 77ms
- Peak Memory
- 2.859 MiB