페이지

12833번: XORXORXOR

https://www.acmicpc.net/problem/12833


$O(1)$

x^x=0, 0^x=x이다.


#include<cstdio>
int a, b, c;
int main() {
    scanf("%d %d %d", &a, &b, &c);
    printf("%d", c & 1 ? a^b : a);
    return 0;
}

댓글 없음 :

댓글 쓰기