Algorithm


C. Alice and Bob
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 n 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 x and y from the set, such that the set doesn't contain their absolute difference |x - y|. Then this player adds integer |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.

Input

The first line contains an integer n (2 ≤ n ≤ 100) — the initial number of elements in the set. The second line contains n distinct space-separated integers a1, a2, ..., an (1 ≤ ai ≤ 109) — the elements of the set.

Output

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

Examples
input
Copy
2
2 3
output
Copy
Alice
input
Copy
2
5 3
output
Copy
Alice
input
Copy
3
5 6 7
output
Copy
Bob
Note

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.



 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <bits/stdc++.h>

using namespace std;

int main() {
  int n, mx = 0, gcd = 0;
  cin >> n;
  for(int i = 0, tmp; i < n; ++i)
  	cin >> tmp, mx = max(mx, tmp), gcd = __gcd(gcd, tmp);
  mx /= gcd;

  if((mx - n) % 2 == 0)
  	puts("Bob");
  else
  	puts("Alice");

  return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
2
2 3

Output

x
+
cmd
Alice
Advertisements

Demonstration


Codeforces Solution-Alice and Bob-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+