# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1104416 |
2024-10-23T17:21:04 Z |
qrn |
Utrka (COCI14_utrka) |
C++14 |
|
136 ms |
18248 KB |
#include <bits/stdc++.h>
using namespace std;
template<class ISqr, class T>
ISqr& operator>>(ISqr& is, vector<T>& v) { for (auto& x : v) is >> x; return is; }
#define SPEED \
ios_base::sync_with_stdio(0); \
cin.tie(NULL); \
cout.tie(NULL);
template <typename T>
void show(vector<T> &v) {
for (T i : v) {
cout << i << ' ';
}
cout << endl;
}
#define pb push_back
#define ins insert
#define fi first
#define se second
#define endl "\n"
#define ALL(x) x.begin(), x.end()
#define sz(x) x.size()
#define int long long
#define _ << " " <<
#define no cout << "No" << endl;
#define yes cout << "Yes" << endl;
#define impos cout << -1 << endl;
#define vi vector<int>
#define pii pair<int,int>
#define vpii vector<pii>
void solve() {
map<string,int>cnt, cntt;
int n;
cin >> n;
for(int i = 1; i <= n; i++) {
string s;
cin >> s;
cnt[s]++;
}
for(auto it : cnt) cntt[it.fi] = it.se;
for(int i = 1; i <= n-1; i++) {
string s;
cin >> s;
cnt[s]++;
}
for(auto it :cnt){
if(cntt[it.fi] * 2 != it.se) {
cout << it.fi << endl;
return;
}
}
}
signed main(){
SPEED;
int t = 1;
// cin >> t;
for(int cs = 1; cs <= t; cs++) {
solve();
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Output is correct |
2 |
Correct |
1 ms |
336 KB |
Output is correct |
3 |
Correct |
2 ms |
336 KB |
Output is correct |
4 |
Correct |
2 ms |
592 KB |
Output is correct |
5 |
Correct |
1 ms |
760 KB |
Output is correct |
6 |
Correct |
57 ms |
8180 KB |
Output is correct |
7 |
Correct |
97 ms |
13736 KB |
Output is correct |
8 |
Correct |
118 ms |
16764 KB |
Output is correct |
9 |
Correct |
128 ms |
18248 KB |
Output is correct |
10 |
Correct |
136 ms |
18164 KB |
Output is correct |