목차

카드 게임

ps
링크acmicpc.net/…
출처BOJ
문제 번호16882
문제명카드 게임
레벨골드 1
분류

게임 이론

시간복잡도O(n)
인풋사이즈n<=10^5
사용한 언어Python 3.11
제출기록43304KB / 96ms
최고기록80ms
해결날짜2023/06/17

풀이

코드

"""Solution code for "BOJ 16882. 카드 게임".

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

Tags: [game theory]
"""

import collections


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

    is_win_pos = any(x % 2 == 1 for x in collections.Counter(A).values())
    print('koosaga' if is_win_pos else 'cubelover')


if __name__ == '__main__':
    main()