编程题目
bh20077
这个作者很懒,什么都没留下…
展开
-
pythonchallenge 【第0题】
新博客地址:http://gorthon.sinaapp.com/ 1: http://www.pythonchallenge.com/pc/def/0.html >>> 2 ** 38 274877906944L >>> 或者: >>> 1 274877906944L >>> 或者: >>> pow(2, 38) 274877906944L >>>原创 2011-05-27 00:07:00 · 864 阅读 · 0 评论 -
pythonchallenge 【第2题】
新博客地址:http://gorthon.sinaapp.com/ http://www.pythonchallenge.com/pc/def/ocr.html 先查看源码,得到那个长的客串 >>> import string >>> a = """%%$@_$^__#)^)&!_+]!*@&^}@[@%]()%+mce_marker[(_……""" # 后面省略 >>> ''.join([原创 2011-05-27 00:15:00 · 700 阅读 · 0 评论 -
【projecteuler.net】题目 5
新博客地址:http://gorthon.sinaapp.com/ Problem 5 2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. What is the smallest positive number that原创 2011-11-09 16:35:46 · 787 阅读 · 0 评论 -
pythonchallenge 【第1题】
新博客地址:http://gorthon.sinaapp.com/ http://www.pythonchallenge.com/pc/def/274877906944.html >>> a = "g fmnc wms bgblr rpylqjyrc gr zw fylb. rfyrq ufyr amknsrcpq ypc dmp. bmgle gr gl zw fylb gq glcddga原创 2011-05-27 00:10:00 · 834 阅读 · 0 评论 -
pythonchallenge 【第3题】
新博客地址:http://gorthon.sinaapp.com/ http://www.pythonchallenge.com/pc/def/equality.html 这个题目的意思一直没有明白…… 其实是这样的,如rRSHpSDBi这样中间的那个p就是要找的字母。 import urllib2,re f=urllib2.urlopen('http://www.pythonchal原创 2011-05-27 00:17:00 · 962 阅读 · 0 评论 -
【projecteuler.net】题目 48
新博客地址:http://gorthon.sinaapp.com/ Problem 48 The series, 11 + 22 + 33 + ... + 1010 = 10405071317. Find the last ten digits of the series, 11 + 22 + 33 + ... + 10001000. >>> str(sum([原创 2011-11-09 16:54:48 · 821 阅读 · 0 评论