Arnaud's suggestion in the comments is a natural one but because there are only four options there's actually a much easier option: we can just multiply $373$ by each of the options and check which ones have last four digits $5555$. Hopefully a unique one will have this property and then this must be the answer.
As it happens, $373 \cdot 2535 = 945555$ and none of the other three end in $5555$, so the answer is $\boxed{ A }$. This is sort of a mean question to ask without any kind of introduction to modular arithmetic, though.
With a little bit of modular arithmetic we can reduce the amount of work we need to do (if we really want to avoid multiplying a $3$-digit number by a $4$-digit number four times, which honestly is not so bad) although it requires being clever about what modular computations to do. We want to check which of the four numbers satisfies $373x \equiv 5555 \bmod 10000$. Clearly $x$ must be divisible by $5$ but not by $25$ which already rules out $C$ and $D$, so only $A$ and $B$ are left. Dividing by $5$ gives
$$373y \equiv 1111 \bmod 2000$$
where $y = \frac{x}{5}$ is either $\frac{2535}{5} = 507$ or $\frac{5235}{5} = 1407$. The two possibilities differ by $900$ which means they differ $\bmod 8$ and $\bmod 125$ (thinking in terms of the Chinese remainder theorem), so checking either of these will uniquely determine the answer. Working $\bmod 8$ gives
$$373y \equiv 13y \equiv -3y \equiv 1111 \equiv -9 \bmod 8$$
which gives $y \equiv 3 \bmod 8$, and on the other hand $507 \equiv 27 \equiv 3 \bmod 8$ and $1407 \equiv 207 \equiv 47 \equiv -1 \bmod 8$ so again the answer is $\boxed{ A }$ (and actually we don't need to do the computation for $1407$, if we are really optimizing for time).
To make things a bit harder, suppose we're guaranteed that the answer is unique (that is, that there's a unique possible remainder - this isn't entirely obvious) but not given any options for what it is. We can compute it by solving $373x \equiv 5555 \bmod 10000$. As above we'll begin by dividing by $5$ and solving
$$373y \equiv 1111 \bmod 2000$$
and using CRT we'll solve this by solving it $\bmod 16$ and $\bmod 125$. Working $\bmod 16$ we have
$$373y \equiv 53y \equiv 5y \equiv 1111 \equiv -89 \equiv 25 \bmod 16$$
which gives $y \equiv 5 \bmod 16$. Working $\bmod 125$ we have
$$373y \equiv -2y \equiv 1111 \equiv -14 \bmod 125$$
which gives $y \equiv 7 \bmod 125$. So we write $y = 7 + 125k$ and try to find $k$ such that
$$y \equiv 7 + 125k \equiv -1 - 3k \equiv 3 \bmod 16$$
which gives $3k \equiv 12 \bmod 16$, hence $k \equiv 4 \bmod 16$, so
$$y = 7 + 125 \cdot 4 = 507$$
which gives
$$x = 5y = \boxed{ 2535 }.$$
After having done this it looks like $373$ was chosen specifically to make this computation easier so this might've been the intended solution.