For the innermost loop to execute, the condition j2 ≤ n must hold, meaning j ≤ n0.5.
In the middle loop, j ranges from i2 to n. Since j ≤ n0.5, the range for j is from i2 to n0.5. For the middle loop to run, the condition i2 ≤ n0.5 must be satisfied, which implies i ≤ n0.25.
Therefore, the outer loop runs from i = 1 to i = n0.25.
Thus, the total time complexity is n0.25⋅n0.5⋅n = O(n1.75) or O(n7/4).