Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.mixmin.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'board.': 0.05; '64-bit': 0.07; 'explicit': 0.07; 'python3': 0.07; 'repeated': 0.09; 'subject:number': 0.09; 'suffix': 0.09; 'type,': 0.09; 'cc:addr :python-list': 0.11; 'python': 0.11; 'def': 0.12; '(0,': 0.16; '153': 0.16; '155': 0.16; '2.7:': 0.16; '398': 0.16; '60,': 0.16; 'arithmetic.': 0.16; 'conclusion:': 0.16; 'correctness': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'integers.': 0.16; 'longs': 0.16; 'similarly,': 0.16; 'subject:skip:m 10': 0.16; 'wrote:': 0.18; 'fit': 0.20; 'machine': 0.22; 'import': 0.22; 'cc:addr:python.org': 0.22; 'integer': 0.24; 'simpler': 0.24; 'skip:% 10': 0.24; 'paul': 0.24; 'cc:2**0': 0.24; 'skip:" 30': 0.26; 'least': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; "doesn't": 0.30; 'message-id:@mail.gmail.com': 0.30; 'gives': 0.31; '100000': 0.31; 'ones.': 0.31; 'subject:all': 0.32; "we're": 0.32; 'quite': 0.32; 'ourselves': 0.33; "can't": 0.35; 'test': 0.35; 'received:google.com': 0.35; 'consistent': 0.36; 'doing': 0.36; 'should': 0.36; 'clear': 0.37; 'performance': 0.37; 'being': 0.38; '12,': 0.39; 'system.': 0.39; 'most': 0.60; 'numbers': 0.61; "you're": 0.61; 'sum': 0.64; 'more': 0.64; '10000': 0.68; '144': 0.84; '145': 0.84; '156': 0.84; '2015': 0.84; 'difference.': 0.84; 'multiplying': 0.84; 'pike': 0.84; 'subject:find': 0.84; 'timing.': 0.84; 'defeat': 0.91; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=etb+vIY02P9LouTtB0tsNmkklHhnPz/0WCETjqB+0H8=; b=ixJyh3LKpPsv09NWZ1vpA00DgEA6m6KT3k7KgZqLk8Kny76jYp7wEI7En9N2E0KgLo TGmHkPPRrQourugB9Tb6mPVL8xxiK+VmLQHGgS8aPdhjVTqfJnfD8PHwmtHu2OI0X9Zy qEGCrKBda+dEp062vTAzSTUAq6V3mMUP9efLmCWQ4cd+yFhi/iAtD+SL1wjvKYAuL3tM hqT9S4sDRA3wCTdB/Y53mr4jidBNAnst8bqqN3JwLVD4j6nwY+JS9R5qwbcwR4o52aDC y3sgPn110JShxmnTkWY1K02WXwP07+vb2EcLEqjcoQbQjEkW/skN/MF2igxjKCSbF/+/ ov5Q== MIME-Version: 1.0 X-Received: by 10.42.50.134 with SMTP id a6mr11032814icg.12.1428786648070; Sat, 11 Apr 2015 14:10:48 -0700 (PDT) In-Reply-To: <87pp7aa6x0.fsf@jester.gateway.sonic.net> References: <890bd388-f50a-4dec-9ef5-27715427472a@googlegroups.com> <55288135$0$12997$c3e8da3$5496439d@news.astraweb.com> <87egnrb3il.fsf@jester.gateway.sonic.net> <87619387c0.fsf@elektro.pacujo.net> <87y4lya9eo.fsf@jester.gateway.sonic.net> <87zj6e7erv.fsf@elektro.pacujo.net> <87pp7aa6x0.fsf@jester.gateway.sonic.net> Date: Sun, 12 Apr 2015 07:10:47 +1000 Subject: Re: find all multiplicands and multipliers for a number From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 106 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1428786656 news.xs4all.nl 2821 [2001:888:2000:d::a6]:44914 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:88841 On Sun, Apr 12, 2015 at 3:52 AM, Paul Rubin wrote: >> PS Note that you're being "wasteful" by multiplying c*c over and over > > Yeah this is a reasonable point, though most of the c's should fit in a > machine word, at least in my 64-bit system. I think Python still > separates ints and longs in the implementation. I don't think it does. Performance doesn't seem to change in Py3 as the numbers get bigger: rosuav@sikorsky:~$ cat perftest.py def naive_sum(top,base=0): i=0 while i