/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 43ms 2.793 MiB
#3 Accepted 44ms 2.77 MiB
#4 Accepted 44ms 2.715 MiB
#5 Accepted 69ms 2.633 MiB
#6 Accepted 42ms 2.77 MiB

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-10-03 15:38:39
Judged By
Score
100
Total Time
69ms
Peak Memory
2.793 MiB