# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
621316 | chinmoy_101 | Utrka (COCI14_utrka) | C++14 | 206 ms | 10372 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
map<string, int> m;
for(int i=1; i<=n*2-1; i++)
{
string a;
cin>>a;
m[a]++;
}
for(auto x : m)
{
if(x.second%2!=0)
{
cout<<x.first <<"\n";
return 0;
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |