Crypto 2

Computer Science Level pending

Answer is: 010100010111000101001110010100011001 010100001000001111010101010011000001001110000100010011, 000110001111010101010010 001000010101001110000100010010000101000100 000001001110000100 010100001000001001010010010100011001.

I think its a bit too hard to be placed as second...

Hint: Computers

~thefourseasons


The answer is 20430.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Laurent Shorts
Apr 28, 2016
1
2
3
4
5
6
7
t = []
offset = ord('A') - 1
for s in  ['010100010111000101001110010100011001','010100001000001111010101010011000001001110000100010011','000110001111010101010010','001000010101001110000100010010000101000100','000001001110000100','010100001000001001010010010100011001']:
        for i in xrange(0, len(s), 6):
                t += [ chr( int(s[i:i+6], 2) + offset ) ]
        t += [ ' ' ]
print "".join(t)

T W E N T Y T H O U S A N D S F O U R H U N D R E D A N D T H I R T Y \boxed{\mathrm{TWENTY\ THOUSANDS\ FOUR\ HUNDRED\ AND\ THIRTY}}

Aloysius Ng
Oct 7, 2014

Change the numbers from binary to base-10 and into letters. They are all in bunches of 6 digits.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...