Preparando MOJI

The least round way

2000ms 65536K

Description:

There is a square matrix n × n, consisting of non-negative integer numbers. You should find such a way on it that

  • starts in the upper left cell of the matrix;
  • each following cell is to the right or down from the current cell;
  • the way ends in the bottom right cell.

Moreover, if we multiply together all the numbers along the way, the result should be the least "round". In other words, it should end in the least possible number of zeros.

Input:

The first line contains an integer number n (2 ≤ n ≤ 1000), n is the size of the matrix. Then follow n lines containing the matrix elements (non-negative integer numbers not exceeding 109).

Output:

In the first line print the least number of trailing zeros. In the second line print the correspondent way itself.

Sample Input:

3
1 2 3
4 5 6
7 8 9

Sample Output:

0
DDRR

Informação

Codeforces

Provedor Codeforces

Código CF2B

Tags

dpmath

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:26:20

Relacionados

Nada ainda