I am trying to write a problem assignment, with textboxes containing the written solutions. The textboxes should be distributed evenly on the page, consuming all the available space. The intended result should look like the following:
\documentclass{scrartcl}
\begin{document}
Please justify all your answers to the following questions.
\begin{enumerate}
\item Is this = that?\hfill 2 points
\fbox{\parbox[t][5cm][t]{\dimexpr\linewidth-2\fboxrule-2\fboxsep}{%
Solution.
Bla bla bla.
}}
\item Is that = this?\hfill 2 points
\fbox{\parbox[t][5cm][t]{\dimexpr\linewidth-2\fboxrule-2\fboxsep}{%
Solution.
}}
\end{enumerate}
\end{document}
Of course I would like the boxes to consume the entire available space. How can I achieve this?



