You are given that the numbers and are to be filled in the square boxes as shown above (without repetition) such that the expression above represent a ratio between a 3-digit integer and a 2-digit integer. Let the resultant number be denoted as . Find the sum of all possible integer value(s) of .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
There will be only 2 cases: 532/14 and 215/43.
I did it by brute force only, but some cases we can reject just by observation such as:
If it is denoted by a/b :
b cannot be 15, 25, 35, 45 as in such cases a have to be divisible by 5 and it is not.
b cannot be 24 or 42, as then a has to be even but it is actually odd.
If last digit of b is 2, last digit of a has to be 4 and vice versa.
In this way lot of cases will get eliminated.