Automobile losses reported to an insurance company are independent and uniformly distributed between $0$ and $20,000$. The company covers each loss subject to a deductible of $5,000$.
Calculate the probability that the total payout on 200 reported losses is between $1,000,000$ and $1,200,000$.
My attempt:
Let $S$ denote the random variable for all losses reported to the insurance company. Then, using CLT, $S \sim N\left(200 \times \dfrac{20,000}{2}, 200 \times \dfrac{20,000}{12}\right) = (2\times 10^6, 577.35^2)$. Now let $Y$ be the random variable for the payout on all claims. Then, $Y=200(S-5000)$ if $10^6\le s<\infty$ and $Y=0$ otherwise.
The desired probability is given by $$P[10^6<Y<1.2\times 10^6] = P[10^6<200(S-5000)<1.2\times 10^6] = P[10^4<S<1.1\times 10^4]$$
Now, I computed $$P\left[Z\le\frac{(1.1\times 10^4) - 2\times 10^6}{577.35}\right] - P\left[Z\le\frac{10^4 - (2\times 10^6)}{577.35}\right]$$
but this didn't lead me to the correct answer. Can someone please suggest what I did wrong in this question? Thanks.

As pointed out by BruceET, you deduce $5000$ from every claim, including those who where valued less than $5000$. This fact changes the total payout.
Here is an example for why it didn't work. Let's say that we have $100$ claim of $20\ 000$ and $100$ claim of $0$. The total loss is $2\cdot10^6$. According to your reasonning, we deduce $5000$ for every claim, since it is a total loss of over $10^6$. After the deduction, we have a total payout of $10^6$. $100$ people recieved $15\ 000$ for the insurance company while the other $100$ people will give back $5000$ to the insurance company! In reality, the insurance company will pay $15\ 000$ to a $100$ people, and $0$ to the other, for a total of $1.5\cdot10^6$.
Let $X_i$ be an automobile loss. Then $X_i\sim \text{Unif}(0, 20\ 000)$. Let $P_i$ be the payout from the insurance company, then $$P_i = \begin{cases}0 &\text{if }X_i \leq 5000\\X_i-5000 &\text{if } 5000<X_i\leq 20\ 000\end{cases}$$
Since it is not an uniform distribution anymore, we have to compute the mean and variance. $$E[P_i] = \int_0^{15\ 000} P_i\times \frac{1}{20\ 000}\ \mathrm{d}P_i = 5625$$ $$E[P_i^2]\int_0^{15\ 000} P_i^2\times \frac{1}{20\ 000}\ \mathrm{d}P_i = 5.625\times10^7$$ $$Var[X_i] = 24\ 609\ 375$$
Now, let $Y$ be the total payout by the insurance company, for $200$ claims, then $$Y\sim N(200\times 5625, 200\times 24\ 609\ 375)$$ $$Y\sim N(1\ 125\ 000, 70\ 156.076^2)$$ All is left if to evaluate the probability as you did.