Created
February 19, 2015 07:43
-
-
Save saikatkumardey/092d2552e5f861315c49 to your computer and use it in GitHub Desktop.
Double Cola
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import math | |
n = input() | |
ans=["","Sheldon", "Leonard", "Penny", "Rajesh", "Howard"] | |
i= int(math.log(math.ceil(n*1.0/5),2)) | |
ans_index= int(math.ceil((n-(2**i -1)*5 )/(2**i*1.0))) | |
print ans[ans_index] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment