I was trying to solve this problem here :- https://www.spoj.pl/problems/PHIVAL/

The questions asks you to output as many decimal digits of the golden ratio (1+sqrt(5))/2 as possible and also try to minimise the code length.

This is what I have right now. Can this code be made any shorter ?

from decimal import *
getcontext().prec=7050
print(1+Decimal(5).sqrt())/2

Thanks.

link|improve this question

3  
the fastest way to do it would be to have a webpage that spits out 1 million digits of phi and have your program just be echo curl mysite.com\phi :-) – corsiKa Apr 18 '11 at 15:47
Why set precision to 7050? Why not 9999? Just as short code-wise, but many more digits. – delnan Apr 18 '11 at 15:50
@delnan It would exceed the timelimit. – jack_carver Apr 18 '11 at 15:53
@glowcoder .. very clever :) .. But that wouldn't work on the spoj. – jack_carver Apr 18 '11 at 18:52
For reference, codegolf.stackexchange.com has a whole bunch of these spoj.pl problems on them – Daniel DiPaolo Apr 18 '11 at 20:02
feedback

4 Answers

up vote 3 down vote accepted

You can take out the space before the asterisk.

Update:

You added the part about insignificant whitespace, so I started thinking about a different approach. If whitespace isn't counted, you may be able to do something like this

print"1."+`map(len,"""      








       """.split("\n"))`[1::3]

It encodes each digit as a number of spaces on a line in a multi-line string constant. Obviously, you could add more lines to get more digits. It should run pretty fast, as there is very little calculation done. It uses 50 (update 2: 45) non-whitespace characters to produce any number of digits output.

link|improve this answer
Thanks. But the source length is counted as the number of non-white space characters. – jack_carver Apr 18 '11 at 15:55
@jack_carver: With the new information about white space, I came up with another approach that may give better results. – recursive Apr 18 '11 at 19:23
1  
Outrageously Smart ! – jack_carver Apr 18 '11 at 19:44
feedback

Taking recursive's approach to an extreme, this uses just 19 non-whitespace characters:

print '1.%d'%len('                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ')

Of course, the code required to generate the first 1000000 digits would be over 10^1000000 characters in length!

link|improve this answer
feedback

Due to high score for short code, i think that best approach could be just

print 1
link|improve this answer
score(ndigits=1, codelen=6) -> 2500001, score(7050, 68) -> 227638 There must be "at least 1000 [digits] after the decimal point." – J.F. Sebastian Apr 18 '11 at 17:21
feedback

Well I tried javascript-ish approach, and it apparently doesn't work in Python:

import decimal
decimal.__dict__.values()[17]().prec = 7050
...

Looks like your code is pretty close to the shortest possible solution.

link|improve this answer
Yes. But due to the varied nature of the formula I cannot exactly figure out the minimal source length. The best python solution there has a score of "307962" Where as mine gives "212528". – jack_carver Apr 18 '11 at 18:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.