SOJ. Alice and Bob

Source: Internet
Author: User
Tags creative commons attribution

1798. Alice and Bob Description

Bob is very famous because he likes to the play games. Today He puts a chessboard in the desktop, and plays a game with Alice. The size of the chessboard is n by N. A stone is placed in a corner square. They play alternatively with Alice has the first move. Each time, player was allowed to move the stone to an unvisited neighbor Square horizontally or vertically. The one can ' t make a move would lose the game. If both play perfectly, who would win the game? Input

The input is a sequence of positive integers, each with a separate line. The integers is between 1 and 10000, inclusive, indicating the size of the chessboard. The end of the input is indicated by a zero.

Output

Output the winner ("Alice" or "Bob") for each input line except the last zero. No other characters should is inserted in the output.

Sample Input

20
Sample Output

Alice




01. // Problem#: 13417 02. // Submission#: 3529776 03. // The source code is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License 04. // URI:http://creativecommons.org/licenses/by-nc-sa/3.0/ 05. // All Copyright reserved by Informatic Lab of Sun Yat-sen University 06. #include<iostream> 07. using namespace std; 08. int main() 09. { 10.      int n; 11.      while (cin>>n,n!=0) 12.      { 13.          if (n%2==0) 14.              cout<< "Alice" <<endl; 15.          else 16.              cout<< "Bob" <<endl; 17.      } 18. }

Water becomes a dog ~



SOJ. Alice and Bob

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.