Another new topic for me, so I used a process that relied on logic.
Happy to see a faster method!
Since we need 2 digit number adding to three digit numbers, and A+B can NOT give zero in units place, the following combos are eliminated-
(A,B) can not be (1,9) (2,8) (3,7) (4,6)
I started with 51 and worked my way, 51+15 is under 100. This goes on until we reach 55, but A and be are UNIQUE integers. So we test 56 onwards.
If (AB)=56
56+65=121. (VALID)
57+75=132 (INVALID since we need CDC)
58+85=143 (INVALID)
59+95=154 (INVALID)
60+06= INVALID since all terms are non-zero.
(We see increase of 11, which makes sense since we are increasing first term by '1' and by default second term will increase by '10')
Similarly for 60-70 range, we start with 64
64+46=110 (INVALID)
65+56=121 (VALID)
66+66=132 (INVALID since each integer is unique)
67+76=143
We note similar progression, 121 and then and increase of 11, and invalid results like above. This establishes a clear pattern.
By the time we reach 70-80 range, we notice another pattern. For 50-60 sum went beyond 100 starting 55, for 60-70 it went beyond 100 starting 64. So we test 73 directly and see that it is indeed true as 72+27=99
73+37=110 (INVALID)
74+47=121 (VALID)
75+57=132 (INVALID)
(Now we see an increment of 11, and it will follow a similar progression as above and give invalid outputs that don't match the CDC pattern)
For 80-90, we test from 82
82+28=110 (INVALID)
83+38=121 (VALID)
84+48= 132 (INVALID)
(Moving forward will continue giving invalid outputs as we have seen above)
For 90-99, we test from 91
91+19=110 (INVALID)
92+29=121
(We know that beyond this it will go invalid)
So far the valid options are-
56+65=121
65+56=121
74+47=121
83+38=121
92+29=121
However, since A,B,C,D are unique integers, 92+29=121 becomes invalid as it would result in A=D (both will be 2)
And since 56
Therefore A can be: (5,6),(6,5),(7,4),(8,3)
B can be: 6,5,4,3
(C,D) can be ONLY (1,2)
C*D will always be 2.
(A*B) can be-
(5*6)=30
(6*5)=30
(7*4)=28
(8*3)=24
Since, first two are the same, we can count it as one.
Possible values of A*B*C*D-
30*2=60
28*2=56
24*2=48
Total possible values-3
Ans- (B)