There is only one integer $x$, between 100 and 200 such that the integer pair $(x, y)$ satisfies the equation $42x + 55y = 1$. What's the value of $x$ in this integer pair?
We know that
$$\begin{align} x &= x_0 + 5t \\ y &= y_0 - 4t \end{align}$$
But we need to know what $x_0, y_0$ are. By applying the GCD algorithm we can get the answer to be $x_0 = 17$ and $y_0 = 13$. So we need to find $100 \leq 17 + 5t \leq 200$. But treating this parametrically yields too many solutions. How do I discover the one solution?