✔ 最佳答案
Another way to look at the same question is whether any integer multiple of 71631 will have zeros in the thousands and ten-thousands place, and a one in the hundreds place.
This "brute force" method is tedious for hand calculations, but quite easy to write as a computer routine.
Here's a FORTRAN loop:
DO 10 J = 1 TO 9999
N = 71631*J
K = N/100
Comment: the K will simply be a truncation.
IF MOD(K,1000) .EQ. 1 THEN
WRITE (6,*) 'SUCCESS AT ', J, ' ', N
STOP
ENDIF
10 CONTINUE
WRITE(6,*) 'NO LUCK FOR J < 10000'
END