$$ 0= x_1 + x_2 + x_3 + x_4 +x_5 - x_1 x_2 x_3 x_4 x_5 \tag{1}$$
An immediate observation I see is that the the above expression is symmetric , so finding one solution will lead to 5! other solutions. Hence, we search unique solution after putting an ordering on our variables:
$$ 1 \leq x_1 \leq x_2 \leq x_3 \leq x_4 \leq x_5$$
From the comment by lulu(*), we can deduce that:
$$ x_1 x_2 x_3 x_4 x_5 \leq 5x_5$$
Or,
$$ x_1 x_2 x_3 x_4 \leq 5 \tag{2}$$
For the max case consider putting $x_4= 5$ , this leads to the following ordering:
$$ x_1 \leq x_2 \leq x_3 \leq x_4 \leq 5 \tag{3}$$
Since the cases are small , we can find them by directly counting as the four number lists which satisfy (2) and (3) :
$$ (x_1,x_2, x_3 , x_4 ) = \{ (1,1,1,1), (1,1,1,2) ,(1,1,1,3), (1,1,1,4) , (1,1,2,2) \} \tag{4}$$
Now consider $(1)$ and rearrange it such that we write $x_5$ as a function of othervariables:
$$ 0 = x_1 + x_2 + x_3 + x_4 + x_5(1-x_1 x_2 x_3 x_4)$$
Or,
$$ \frac{x_4 + x_2 + x_3 + x_1 }{x_3 x_4 x_2 x_1 - 1} = x_5$$
Plug in the number lists to the above equation, this will lead us the following set of $(x_1,x_2,x_3,x_4,x_5)$ quintuples : $\{(1,1,1,2,5),(1,1,1,3,2) , (1,1,2,2,3) \}$ (As checked using a Pascal program by @Raffaele )[ I have neglected the cases where plugging in the list gave me negative/ undefined number to satisfy the conditions of the question]
Now, with the solutions, I'll leave it to you to permute them and find the total :^)
(*): If the values of $x_1,x_2,x_3,x_4,x_5$ are positive integers, then after putting the ordering, it must be that the sum of rest of numbers is less than five times the sum of the largest number. For example,
$$ 1 +2 +3 +4 +5 \leq 5(5)$$
The sum of first five integers is definitely less than five times the largest integer