2015年5月3日
摘要: import sysimport psyco #一键优化库psyco.full()def main(): n, k = map(int, sys.stdin.readline().strip().split()) #两位数输入的复用 count = 0 for t in sys.s... 阅读全文
posted @ 2015-05-03 18:43 sangocare 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 1 # ATM2 import sys3 4 withdraw, balance = map(float, sys.stdin.readline().strip().split()) # strip()用法去除结尾的\n符号5 6 if int(withdraw) % 5 != 0 or bala... 阅读全文
posted @ 2015-05-03 10:47 sangocare 阅读(168) 评论(0) 推荐(0) 编辑