Given a sphere of radius R, determine how many points on the surface of that sphere have three integer coordinates. Do not output the actual coordinates, but just the number of points.

For example, a sphere of radius 1 has 6 points with three integer coordinates:

  • (1,0,0)
  • (-1,0,0)
  • (0,-1,0)
  • (0,1,0)
  • (0,0,1)
  • (0,0,-1)

Your output of surface_points(1) would be 6. Good luck!

Solution Stats

77 Solutions

26 Solvers

Last Solution submitted on Feb 16, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...