/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 23ms 2.77 MiB
#3 Accepted 24ms 2.816 MiB
#4 Accepted 47ms 2.77 MiB
#5 Accepted 22ms 2.77 MiB
#6 Accepted 23ms 2.609 MiB

Code

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

void solve() {
     
    int n;
    cin >> n;

    map<int, int> mp;
    for (int i = 0; i < n; i++) {
    	int x;
    	cin >> x;
    	mp[x]++;
    }

    for (auto [x, y] : mp) {
    	if (y == 1) {
    		cout << x << '\n';
    		return;
    	}
    }
}

int32_t main() {
	ios_base::sync_with_stdio(false);
    cin.tie(0);

    int tc = 1;
    //cin >> tc;

    while(tc--) {
    	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:33:02
Judged At
2024-10-03 15:33:02
Judged By
Score
100
Total Time
47ms
Peak Memory
2.816 MiB