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()