Consider a competition with $n$ competitors, and $k$ contests. Each competitor receives a combined score, which is the product of their placements in each of the contests (assume no ties in the contests). The competitor with the lowest combined score wins.
For example, olympic sport climbing has $n=20$ competitors and $k=3$ for speed, boulder, and lead. Brooke Raboutou got 12th place in speed, 2nd place in boulder, and 8th place in lead for a combined score of 192. Janja Garnbret's combined score was $14\times 1\times 4=56$, which was the first-place score.
What is the largest possible score of the winner(s) of such a contest?
By brute force (i.e., computing all possible outcomes), here is the answer for some values of $n$ and $k$.
| n\k | 1 | 2 | 3 | 4 | 5 |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 1 | 1 | 1 |
| 2 | 1 | 2 | 2 | 4 | 4 |
| 3 | 1 | 3 | 6 | 9 | 18 |
| 4 | 1 | 4 | 8 | 24 | 48 |
| 5 | 1 | 5 | 15 | 40 | - |
| 6 | 1 | 6 | 24 | - | - |
| 7 | 1 | 7 | 35 | - | - |
Some observations:
By taking the geometric mean we get $f(n,k) \leq \lfloor (n!)^{k/n} \rfloor$, this result is achievable when $k$ is a multiple of $n$, by making each contest a rotation by one place of the previous one.
The following table shows $\lfloor (n!)^{k/n} \rfloor - f(n,k) $ for $1\leq,n,k \leq 5$, maybe it helps.