You can view the solution by clicking on the solution tab.
Editorial
Need a hint? Checkout the editorial.
View Editorial
Editorial
The problem is easily bashable.
ধরো $a_1, a_2, a_3$ কতগুলো পূর্ণসংখ্যা। প্রমাণ করো যে, এমন কিছু পূর্ণসংখ্যা $b_1, b_2, b_3$ আছে যেন:
We basically want to sum them, we can place either plus or minus in front of them or make an element disappear, but we can't make all of them disappear. Instead of considering three numbers, consider the set ${\pm a_1,\pm a_2,\pm a_3}$
Case 1:
If one of them is 0 $(mod 7)$, then we can make the rest of the numbers disappear and that will be enough.
Case 2:
If two of them are equal we cancel them and make the last one dissapear
Case 3:
The last case is that all of the six numbers in the set is distinct $(mod 7)$. It is easy to see that the 3 numbers have to be $\pm1, \pm2, \pm3$. So we arrange them to be.
\[1+2-3 = 0 \ (mod \ 7)\]
So we are done.
The problem is easily bashable.