목차

Nim without Zero

ps
링크acmicpc.net/…
출처BOJ
문제 번호16831
문제명Nim without Zero
레벨플래티넘 2
분류

게임 이론

시간복잡도O(n)
인풋사이즈n<=10^5
사용한 언어Python 3.11
제출기록35396KB / 108ms
최고기록92ms
해결날짜2023/07/05

풀이

코드

"""Solution code for "BOJ 16831. Nim without Zero".

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

Tags: [game theory]
"""


import functools
import operator
import sys


def main():
    N = int(sys.stdin.readline())
    a = [int(sys.stdin.readline()) for _ in range(N)]

    grundy = functools.reduce(operator.xor, a)
    if grundy == 0:
        print('Alice' if any(a_i % 2 == 1 for a_i in a) else 'Bob')
    else:
        print('Alice' if grundy != 1 else 'Bob')


if __name__ == '__main__':
    main()