$10$ people are seating on chairs around a circular table. These chairs are marked in a clockwise manner. There is a ball on the man’s hand who is seated on $0$ marked chair, and the ball will be passed from one man to another in clockwise manner. In first step, the ball goes to $1$ marked chair with $1^1$ turn. In second step, from there, the ball goes to 5 marked chair with $2^2$ turns. In third step, the ball goes to $2$ marked chair by $3^3$ turns from $5$ marked chair. By this means, in which chair the ball will be in $2020$th step?
Source: Bangladesh Mathematical Olympiad (BdMO)
I'm not sure about exactly how many turns are required in the 2020th step. The question is a great deal ambiguous. Does the $n$th step require $n^n$ turns? Or does the pattern of $1^1, 2^2, 3^3$ repeat itself?
But often in cases like this where there are multiple possibilities for the answer, the one that seems more intuitive and makes more common sense is more likely to be the answer. After solving the problem in both the possible ways, comparing the two different answers should make the answer obvious.
I've already tried to solve the problem the triad of turns style in a self-answer. However, I can't solve it the $n^n$ way; it's too advanced for me. I'm only an 8th grader, you see.

If the number of turns is greater than $9$, the actual number of chairs we have to ultimately move through can be calculated by taking modulo $10$.
Triad of $1^1, 2^2, 3^3$
$$...$$
The formula here is:
The ball's position is furthered by $2$ places at the end of each triad of turns. This is because $1^1+2^2+3^2=32 \equiv 2\pmod {10}$.
You'll see that—
In triad $1$, initially the ball is in chair $0$ and ends up in chair $2$.
In triad $2$, initially the ball is in chair $2$ and ends up in chair $4$.
In triad $3$, initially the ball is in chair $4$ and ends up in chair $6$.
Now how many full triads are there in $2020$ steps?
$2020 \div 3=673$.
$2020 \equiv 1 \pmod{3}$.
This means the ball must have been moved $673\times2$ times. Modulo 10 gives us $6$. And the extra one step has $1^1$ turn. So the chair holding the ball should be the one marked $7$.