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?