I wanted to solve the problem with the Central Limit Theorem.
Analyzing the question, I modeled the situation with a random variable :
$$\begin{cases} 1 & \text{with probability } 1/2; \\ 0 & \text{with probability } 1/2; \end{cases} $$
Calculating the mean $\mu = \frac{1}{2}$ and the variance $\sigma^2 = \frac{1}{4}$.
Then, I thougt that since the number of repetitions is >> 30 I tried to fit the probability function to a Gaussian normal $N(400\mu,400\sigma) = N(200,100)$.
Calculating and "normalizing"...
$$\begin{align} & P(160 < x < 190)\\ &= P\left( \frac{160-200}{20 \times 100} < z < \frac{190-200}{20 \times 100}\right) \\ &= P(-0.02 < z < -0.005). \end{align}$$
And here I'm stuck because I wanted to use the relation
$$ P(160 < x < 190) = \Phi(-0.005) - \Phi(-0.02) $$
That result negative..
Do you see any error in my strategy?