# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
201454 | 2020-02-10T15:39:09 Z | EmmanuelAC | 마라톤 경주 (COCI14_utrka) | C++14 | 5 ms | 376 KB |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; set<string> ms; for(int i=0; i<n; i++){ string s; cin >> s; ms.insert(s); } for(int i=0; i<n-1; i++){ string s; cin >> s; ms.erase(s); } cout << *(ms.begin()) << "\n"; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 376 KB | Output is correct |
2 | Incorrect | 5 ms | 376 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |