🏡 index : github.com/captn3m0/codechef.git

---
{"languages_supported":{"0":"NA"},"title":"PROPOSAL","category":"NA","old_version":true,"problem_code":"PROPOSAL","tags":{"0":"NA"},"layout":"problem"}
---

<h3> All submissions for this problem are available. </h3><p>In PrimeLand, there existed a very handsome young prince named <em>Prima</em>. He greatly desired the Princess of Mathematics &#8211; <em>Facie</em>. However, before accepting his hand in marriage, Facie asked Prima to solve the following problem:</p>
<br />
<p>
The figure below shows a simple multiplication problem. However, not all the decimal digits are available. Prima has to find an assignment of digits to the marked places so that the multiplication is valid.</p>
<p>
<pre>
      * * *
   x    * *
    -------
      * * *         &lt;-- partial product 1
    * * *           &lt;-- partial product 2
    -------
    * * * *
</pre><br />

Digits can appear only in places marked by  *'. Of course, leading zeroes are not allowed.
Write a program to help Prima that will find all solutions to this problem for any subset of digits from the set {1,2,3,4,5,6,7,8,9}.
</p>

<h3>Input</h3>
<p>The first line contains N, the number of digits that will be used <br />
The second line contains N space separated digits 

<h3>Output</h3>
</p><p>A single line with the total number of unique solutions. Here is the single solution for the sample input:
<pre>
      2 2 2
    x   2 2
     ------
      4 4 4
    4 4 4
  ---------
    4 8 8 4
</pre>

<h3>Example</h3>

<pre>
<b>Input:</b>
5
2 3 4 6 8


<b>Output:</b>
1
</pre></p>