Skip to content

Instantly share code, notes, and snippets.

@HQMIS
Last active December 13, 2015 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HQMIS/4961893 to your computer and use it in GitHub Desktop.
Save HQMIS/4961893 to your computer and use it in GitHub Desktop.
pythonchallenge
0 --> Hint: try to change the URL address. (http://www.pythonchallenge.com/pc/def/0.html --> http://www.pythonchallenge.com/pc/def/1.html)
1 --> calculate 2**38 (http://www.pythonchallenge.com/pc/def/1.html --> http://www.pythonchallenge.com/pc/def/274877906944.html)
C:\Documents and Settings\huangqimin>python
Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>> 2**38
274877906944L
>>> import math
>>> pow(2, 38)
274877906944L
>>>
2 --> Shift Encryption(http://www.pythonchallenge.com/pc/def/map.html --> )
@HQMIS
Copy link
Author

HQMIS commented Feb 16, 2013

1001642837500

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment