PE097


Project Euler Problem #97

 

This solution uses a bignum library I wrote.  Thinking about it later, it's overkill, and all you'll need is an interger large enough to store 10,000,000,000.  Any overflow over that can just be ignored.

 

 097.c

 bignum.c

 


Return to list of solutions