Created
December 9, 2013 06:29
-
-
Save christianroman/7868204 to your computer and use it in GitHub Desktop.
Facebook Hacker Cup Round 1: Labelmaker
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
ls, out = [line.strip() for line in open('input')], '' | |
for t in xrange(1, int(ls[0]) + 1): | |
st, n = ls[t].split(' ') | |
n, k, l, p, r = int(n), len(st), 0, 1, '' | |
while n >= p: | |
n -= p | |
p *= k | |
l += 1 | |
for i in range(l): | |
r += st[n % k] | |
n /= k | |
print "Case #{0}: {1}".format(t, r[::-1]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment