Start with 1,000 coins. Split piles any way you like. Each split n → x + (n−x) adds x(n−x). Why is the final total always the same?
Before splitting, a pile of size n contributes C(n,2) to the remaining potential. After splitting, its two children contribute C(x,2)+C(n−x,2). The drop is exactly x(n−x), the amount added to the running total.
Consider every unordered pair of coins. A pair stays together until one particular split separates its two coins for the first time.
A split into x and n−x separates exactly x(n−x) pairs. Therefore every pair of coins is counted exactly once.