# Copyright © 2004-2013 Brent Fulgham # # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # * Redistributions of source code must retain the above copyright notice, # this list of conditions and the following disclaimer. # # * Redistributions in binary form must reproduce the above copyright notice, # this list of conditions and the following disclaimer in the documentation # and/or other materials provided with the distribution. # # * Neither the name of "The Computer Language Benchmarks Game" nor the name # of "The Computer Language Shootout Benchmarks" nor the names of its # contributors may be used to endorse or promote products derived from this # software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # The Computer Language Benchmarks Game # http://benchmarksgame.alioth.debian.org # transliterated from Mario Pernici's Python program # contributed by Rick Branson # http://benchmarksgame.alioth.debian.org/u64q/program.php?test=pidigits&lang=yarv&id=3 def pidigits(n_prime) sum = 0 i = k = ns = 0 k1 = 1 n,a,d,t,u = [1,0,1,0,0] loop do k += 1 t = n<<1 n *= k a += t k1 += 2 a *= k1 d *= k1 if a >= n t,u = (n*3 +a).divmod(d) u += n if d > u ns = ns*10 + t i += 1 if i % 10 == 0 sum ^= ns/1000 ns = 0 end break if i >= n_prime a -= d*t a *= 10 n *= 10 end end end sum end def harness_input 5000 end def harness_sample(input) pidigits(input) end def harness_verify(output) output == 1007389 end require 'bench9000/harness'