There was a problem in a recent programming competition which my friend solved by assuming the following conjecture:
Show that for any set of $2n$ integers, there is a subset of $n$ integers whose sum is divisible by $n$.
I have thought about this problem for a while but can't seem to prove it, but I couldn't come up with a counter-example either.
A similar problem has a well-known solution: show that for any set of $n$ integers, there is a non-empty subset whose sum is divisible by $n$.
The proof goes as follows. Suppose the set is $\{x_1, x_2, \dots, x_n\}$ and hence define $s_i = \left(x_1 + x_2 + \dots + x_i\right)\bmod n$, with $s_0 = 0$. Then we have the set $\{s_0, s_1, \dots, s_n\}$ with $n+1$ elements, but each $s_i$ can take only $n$ distinct values, so there are two $i, j$ with $i\neq j$ such that $s_i = s_j$. Then $s_j - s_i = x_{i+1} + x_{i+2} + \dots + x_j$ is divisible by $n$.
However, this approach can't directly be applied to this problem since now we need to ensure that we choose exactly $n$ integers.