COCI 2014/2015 Contest #2 2번

10546 : 배부른 마라토너
10546 : UTRKA

풀이

map 써도 되고

이렇게 짜도 된다

코드

#include <cstdio>
int n, i;
char a[22], s[22];
int main() {
    scanf("%d", &n); n *= 2;
    for (n--; n--;) {
        scanf("%s", s);
        for (i = 0; s[i]; i++) a[i] ^= s[i];
    }
    printf("%s", a);
    return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2018-04-17 09:47

Read more posts by this author