Skip to content

Instantly share code, notes, and snippets.

@christianroman
Created December 9, 2013 06:29
Show Gist options
  • Save christianroman/7868204 to your computer and use it in GitHub Desktop.
Save christianroman/7868204 to your computer and use it in GitHub Desktop.
Facebook Hacker Cup Round 1: Labelmaker
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