The C Programming Tips and Tricks Wiki

 

PE034

Page history last edited by Kenneth Finnegan 1 yr ago

Project Euler Problem #34

 

The only trick for this problem is finding a upper bound.  9! = 362,880.  Multiply that by 7 gives 9!*7 = 2,540,160, where multiplying by 8 still only gives a 7 digit number, which shows that no number over 2,540,160 is going to possibly add up to itself.

 

 

Runtime: 0.476 seconds

PE034_c

 


Return to list of solutions

Comments (0)

You don't have permission to comment on this page.