목차

Blackboard Game

ps
링크acmicpc.net/…
출처BOJ
문제 번호30477
문제명Blackboard Game
레벨골드 1
분류

게임이론

시간복잡도O(n)
인풋사이즈n<=1000
사용한 언어Python 3.11
제출기록34008KB / 60ms
최고기록40ms
해결날짜2023/12/11

풀이

코드

"""Solution code for "BOJ 30477. Blackboard Game".

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

Tags: [game theory]
"""

import collections


def main():
    N = int(input())  # pylint: disable=unused-variable
    B = input().split()

    counter = collections.Counter(B)
    print('N' if all(x % 3 == 0 for x in counter.values()) else 'Y')


if __name__ == '__main__':
    main()