[EASY] Yet Another Number Game - CodeChef
[EASY] Yet Another Number Game – CodeChef
Here is the problem: http://www.codechef.com/problems/NUMGAME/ And here is my solution. I get 0.02s with this code.
length = int(raw_input()) for i in range(0, length): number = int(raw_input()) if(number % 2 == 0): print "ALICE" else: print "BOB"
View On WordPress












