| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1323058 | aaaaaaaa | 마라톤 경주 (COCI14_utrka) | C++20 | 36 ms | 8368 KiB |
#include <bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int n;cin>>n;
unordered_map<string,int> mp;
string str;
while(cin>>str){
++mp[str];
}
for(auto it:mp){
if(it.second&1){
cout<<it.first;
return 0;
}
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
