返回题库

AIME 1997 · 第 3 题

AIME 1997 — Problem 3

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Sarah intended to multiply a two-digit number and a three-digit number, but she left out the multiplication sign and simply placed the two-digit number to the left of the three-digit number, thereby forming a five-digit number. This number is exactly nine times the product Sarah should have obtained. What is the sum of the two-digit number and the three-digit number?

解析

Solution

Let xx be the two-digit number, yy be the three-digit number. Putting together the given, we have 1000x+y=9xy9xy1000xy=01000x+y=9xy \Longrightarrow 9xy-1000x-y=0. Using SFFT, this factorizes to (9x1)(y10009)=10009(9x-1)\left(y-\dfrac{1000}{9}\right)=\dfrac{1000}{9}, and (9x1)(9y1000)=1000(9x-1)(9y-1000)=1000.

Since 89<9x1<89089 < 9x-1 < 890, we can use trial and error on factors of 1000. If 9x1=1009x - 1 = 100, we get a non-integer. If 9x1=1259x - 1 = 125, we get x=14x=14 and y=112y=112, which satisifies the conditions. Hence the answer is 112+14=126112 + 14 = \boxed{126}.

Solution 2

As shown above, we have 1000x+y=9xy1000x+y=9xy, so 1000/y=91/x1000/y=9-1/x. 1000/y1000/y must be just a little bit smaller than 9, so we find y=112y=112, x=14x=14, and the solution is 126\boxed{126}.

Solution 3

To begin, we rewrite (10a+b)(100x+10y+z)9=10000a+1000b+100x+10y+z(10a+b)*(100x+10y+z)*9 = 10000a + 1000b + 100x + 10y + z

as

(90a+9b1)(100x+10y+z)=10000a+1000b(90a+9b-1)(100x+10y+z) = 10000a + 1000b

and

(90a+9b1)(100x+10y+z)=1000(10a+b)(90a+9b-1)(100x+10y+z) = 1000(10a + b)

This is the most important part: Notice (90a+9b1)(90a+9b-1) is 1(mod10a+b)-1 \pmod{10a+b} and 1000(10a+b)1000(10a + b) is 0(mod10a+b)0\pmod{10a+b}. That means (100x+10y+z)(100x+10y+z) is also 0(mod10+b)0\pmod{10+b}. Rewrite (100x+10y+z)(100x+10y+z) as n×(10a+b)n\times(10a+b).

(90a+9b1)×n(10a+b)=1000(10a+b)(90a+9b-1)\times n(10a+b)= 1000(10a + b) (90a+9b1)×n=1000(90a+9b-1)\times n= 1000

Now we have to find a number that divides 1000 using prime factors 2 or 5 and is 8(mod9)8\pmod9. It is quick to find there is only one: 125. That gives 14 as 10a+b10a+b and 112 as 100x+10y+z100x+10y+z. Therefore the answer is 112+14=126112 + 14 = \boxed{126}.

-jackshi2006