I want to know if the equation $x^3+y^3+z^3+t^3=10^{2021}$ has distinct positive integer solutions
PowersRepresentations[10^2021, 4, 3]
return
PowersRepresentations::ovfl: Overflow occurred in computation.
FindInstance[{x^3 + y^3 + z^3 + t^3 == 10^2021, 0 < x < y < z < t}, {x,y,z,t}, Integers]
My computer runs too long. How can I reduce timing to solve this equation?
Easy, notice that $10^{2021}=100\times 10^{3\times 673}$. Next use your code, but for the factor 100.
yielding a single result
Now verify the solution