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