Given the small length of the strings of interest, providing a (computable) exact solution is straightforward.
As noted in the comments, if $X$ is a random bit-string of length 32, then the weight
$$
W = \mathrm{weight}(X) \>,
$$
the Hamming distance with respect to zero, is just the sum of the digits and so is binomial with parameters $n = 32$ and $p = 1/2$.
Distribution of the minimum
Now, recall that if $W_1,\ldots,W_n$ is a random sample of size $n$ from distribution $F$, then
$$
\renewcommand{\Pr}{\mathbb P}
\Pr\left( \min_{1\leq i \leq n} W_i > w\right) = (1 - F(w))^n \>.
$$
In our case, each $W_i$ is discrete and so it suffices to consider the probability of each atom.
Let $\newcommand{\Wo}{W_{(1)}}\Wo$ denote the minimum of the sample of size $n$. Then, $\Wo \in \{0,\ldots,32\}$, and so
$$
\Pr(\Wo = w) = \Pr(\Wo > w - 1) - \Pr(\Wo > w) = (1-F(w-1))^n - (1-F(w))^n \>.
$$
Plugging in $F(w) = 2^{-32} \sum_{k=0}^w {32 \choose k}$ will yield the desired probabilities.
Note that this results extends easily to the case of general $n$ and $p$, as well.
A note on the expected value
The expected value can readily be computed by the standard formula
$$
\mathbb E \Wo = \sum_{w=0}^{32} w \Pr(\Wo = w) \>,
$$
though to get a rough estimate, we can note that
$$
\mathbb E \Wo \leq 32 \Pr(\Wo > 0) = 32 (1 - 2^{-32})^n \>,
$$
so the expected value converges to zero geometrically fast.