Cryptograma

A B C D × B A D C B 6 D D D 6 B \Large \begin{array} {c c c c} &&& \color{#3D99F6}A & \color{#D61F06}B & \color{#EC7300}C &\color{#20A900}D \\ && \times & \color{#D61F06}B & \color{#3D99F6}A &\color{#20A900}D & \color{#EC7300}C \\ \hline \color{#D61F06}B & 6 &\color{#20A900}D &\color{#20A900}D &\color{#20A900}D & 6 & \color{#D61F06}B \\ \end{array}

For the cryptogram above, A A , B B , C C , and D D represent distinct digits.

Find A B × C D \overline{AB} \times \overline{CD} .

Note: x y x × y \overline{xy} \neq x \times y


The answer is 408.

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.

1 solution

Always can use code to solve this:

1
2
3
4
from itertools import permutations
for a,b,c,d in permutations('0123456789',4):
  if int(a+b+c+d)*int(b+a+d+c)==int(b+'6'+d+d+d+'6'+b):
    print(int(a+b)*int(c+d))

1
2
Solution:
408

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...