This problem got me thinking about the following more general scenario:
Suppose you have $k$ positive integers with total sum $n$, and you arrange them in a circle.
Given such an arrangement, you could look at different sums of consecutively placed positive integers along "arcs" of this circle. Furthermore, you could ask which numbers must always appear in an arc for a given $k$ and $n$, i.e., regardless of which $k$ positive integers summing to $n$ are chosen and how they are arranged around the circle.
Let $A_{k, n}$ be the set of numbers that necessarily appear in some arc for every circular arrangement of $k$ positive integers whose sum is $n$. (Of course, this set is nonempty iff $k \leq n$.)
Trivially, $n \in A_{k, n}$. (Proof: take the arc that corresponds to the entire circle.)
The linked problem above demonstrates that $200 \in A_{101, 300}$ using the pigeonhole principle.
Another obvious fact: given a positive integer $m < n$ with $m \in A_{k, n}$, then $n-m \in A_{k,n}$ as well.
For the linked problem above, this means that $300 - 200 = 100 \in A_{101, 300}$ too.
Of course, this latter fact is proven by taking complement arcs.
Questions:
$1.$ Has this general scenario already been studied under some other name?
$2.$ Is there an easy way to determine the elements of $A_{k,n}$ in general?
$3.$ If the answers to $1$ and $2$ are both no, what can you show for some special cases?
As a final, very simple example: $A_{n,n} = \{1, \ldots, n\}$.
(Ideally, if you are going to answer $3$, it would be with a less trivial proposition!)
Equivalent problem: $k$ distinct elements are selected from the integers $\mod n$; which $\mod n$ differences between pairs are forced? The equivalence is to assign, to a set of $k$ positive integers written around a circle, its set of clockwise arc sums $\mod n$, including $0$ for the empty sum.
Pairs at a difference of $d$ can be represented as an undirected graph by joining any such pair by an edge. The structure of the graph depends only on $g = \gcd(d,n)$, it is a union of $g$ disjoint cycles all of length $\frac{n}{g}$. A cycle of length $L$ can accomodate up to $\lfloor \frac{L}{2} \rfloor$ vertices not connected by an edge.
Thus $d$, and any distance with the same value of $g$, is forced if and only if $k > g \lfloor \frac{n}{2g} \rfloor$. The condition for $k$ to force $g$ is then $k > n/2$ when $2g|n$, and $k > \frac{n-g}{2}$ when $n$ and $g$ are divisible by the same power of $2$. This is the necessary and sufficient condition for values of $d$ with $(d,n)=g$ to be in the set of forced arc sums $A_{k,n}$.