목차

님 게임 2

ps
링크acmicpc.net/…
출처BOJ
문제 번호11868
문제명님 게임 2
레벨플래티넘 4
분류

스프라그-그런디

시간복잡도O(n)
인풋사이즈n<=100
사용한 언어Python
제출기록30840KB / 68ms
최고기록56ms
해결날짜2022/05/26

풀이

코드

"""Solution code for "BOJ 11868. 님 게임 2".

- Problem link: https://www.acmicpc.net/problem/11868
- Solution link: http://www.teferi.net/ps/problems/boj/11868

Tags: [Sprague-Grundy]
"""


def main():
    N = int(input())  # pylint: disable=unused-variable
    P = [int(x) for x in input().split()]

    grundy = 0
    for p_i in P:
        grundy ^= p_i
    print('koosaga' if grundy else 'cubelover')


if __name__ == '__main__':
    main()