OurBigBook About$ Donate
 Sign in Sign up

Project Euler problem zero

Ciro Santilli (@cirosantilli, 37) ... Knowledge olympiad Knowledge olympiad by domain of knowledge Competitive programming Competitive programming website Project Euler Project Euler problem
2025-10-14  0 By others on same topic  0 Discussions Create my own version
This was a registration CAPTCHA problem as of 2025:
Among the first 510 thousand square numbers, what is the sum of all the odd squares?
Python solution:
s = 0
for i in range(1, 510001, 2):
    s += i*i
print(s)

 Ancestors (12)

  1. Project Euler problem
  2. Project Euler
  3. Competitive programming website
  4. Competitive programming
  5. Knowledge olympiad by domain of knowledge
  6. Knowledge olympiad
  7. STEM prize
  8. Prize
  9. Social technology
  10. Area of technology
  11. Technology
  12.  Home

 View article source

 Discussion (0)

New discussion

There are no discussions about this article yet.

 Articles by others on the same topic (0)

There are currently no matching articles.
  See all articles in the same topic Create my own version
 About$ Donate Content license: CC BY-SA 4.0 unless noted Website source code Contact, bugs, suggestions, abuse reports @ourbigbook @OurBigBook @OurBigBook