CF346A.Alice and Bob

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

It is so boring in the summer holiday, isn't it? So Alice and Bob have invented a new game to play. The rules are as follows. First, they get a set of nn distinct integers. And then they take turns to make the following moves. During each move, either Alice or Bob (the player whose turn is the current) can choose two distinct integers xx and yy from the set, such that the set doesn't contain their absolute difference xy|x-y| . Then this player adds integer xy|x-y| to the set (so, the size of the set increases by one).

If the current player has no valid move, he (or she) loses the game. The question is who will finally win the game if both players play optimally. Remember that Alice always moves first.

输入格式

The first line contains an integer nn ( 2<=n<=1002<=n<=100 ) — the initial number of elements in the set. The second line contains nn distinct space-separated integers a1,a2,...,ana_{1},a_{2},...,a_{n} ( 1<=ai<=1091<=a_{i}<=10^{9} ) — the elements of the set.

输出格式

Print a single line with the winner's name. If Alice wins print "Alice", otherwise print "Bob" (without quotes).

输入输出样例

  • 输入#1

    2
    2 3
    

    输出#1

    Alice
    
  • 输入#2

    2
    5 3
    

    输出#2

    Alice
    
  • 输入#3

    3
    5 6 7
    

    输出#3

    Bob
    

说明/提示

Consider the first test sample. Alice moves first, and the only move she can do is to choose 2 and 3, then to add 1 to the set. Next Bob moves, there is no valid move anymore, so the winner is Alice.

首页