답안 #141150

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
141150 2019-08-07T02:52:00 Z Breno_XD 마라톤 경주 (COCI14_utrka) C++14
0 / 80
2 ms 376 KB
#include <bits/stdc++.h>
using namespace std;

int n;
map<string, int> mapa;

int main(){
	
  	ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
	  
    scanf("%d", &n);

    for(int i=1; i<=n; i++){
        string s;
        cin >> s;
        mapa[s]++;
    }

    for(int i=1; i<n; i++){
        string s;
        cin >> s;
        mapa[s]--;
    }

    for(map<string,int>::iterator it = mapa.begin(); it!=mapa.end(); it++){

        if(it->second == 1){
            cout << it->first << "\n";
            break;
        }

    }

    return 0;
}

Compilation message

utrka.cpp: In function 'int main()':
utrka.cpp:11:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &n);
     ~~~~~^~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -