[EASY] Chef-jumping - CodeChef
[EASY] Chef-jumping – CodeChef
Here is the problem: http://www.codechef.com/problems/OJUMPS/ And here is my solution. I get 0.00s with this code.
number = int(raw_input()) if ((number % 6 == 0) or (number % 6 == 1) or (number % 6 == 3)): print "yes" else: print "no"
View On WordPress












