# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
74270 | nixys | 마라톤 경주 (COCI14_utrka) | C++11 | 325 ms | 17980 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fi first
#define se second
#define mp make_pair
#define pb push_back
using namespace std;
typedef pair <int, int> pii;
typedef long long ll;
const int inf = 1e9 + 1;
const double eps = 1e-9;
const int MAXN = 1e5 + 1;
int n;
map <string, int> m;
string ime;
int main(){
cin >> n;
for (int i = 0; i < n; i++){
cin >> ime;
m[ime]++;
}
for (int i = 1; i < n; i++){
cin >> ime;
m[ime]--;
}
for (map<string,int>::iterator it = m.begin(); it != m.end(); it++){
if (it->second == 1){
cout << it->first;
return 0;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |