When trying to calculate $2^{100}$ with a malfunctioning calculator, the screen displayed a number with missing dgits, that is:
$$1x676506002282294014967032053yz$$
where $x,y$ and $z$ represent missing digits. Can you find all of the missing digits?
What I have so far is that $z=6$, since $2^{100}$ has the form $2^{4k}$. Then, since $2^{100}$ is divisible by 4, its last two digits must be a number divisible by 4, this means $y$ can be either $1, 3, 5, 7$ or $9$. Then I took into consideration that $2^{100}$ is also divisible by 8, so its last 3 digits should be a number divisible by 8. That means $y$ is reduced to the two posibilities $3$ or $7$. Then I thought I could try with the divisibility by 16, but I realized this process is far too slow and I was wondering if there's a faster way to fing what the value for $y$ is.
Then for $x$ I thought that, since $2^{100}$ is only made by powers of 2, I should find the posibilities for $x$ that result in a number that cannot be divided by any other number than powers of 2. But that also seems like a slow and bad a pproach.