Okay, I'll post it. But what about exceeding the player limit? (regarding the rating system)
So, this is the rating calculation system. I personally didn't understand much there)
"""First, the player rating is calculated for each player:
Rplayer = 1000 * (X + 2 * X^3)
where X = (N - Place) / (N-1)
(Here, "Place" refers to the position in the match occupied by the i-th player and takes values 1, 2...N, N is the number of players who finished the match).
If some players share several (K) places, then their player rating is averaged:
Rplayer = 1/K * Σ Rplayer[j]
j runs through all such players
The rating of the entire match is calculated as the average of the ratings of all players, which they had at the end of the game:
Rmatch = (1/N) Σ Rafter_end_of_match
i=1
And, finally, the current rating is recalculated:
Rnew = 2/3 * Rold + Rplayer * (1 + Rmatch/6000)"""
2/3 * Rold
And then it is added to the rating earned by the participant in this Tournament. I am confused by the number 6000? Where it came from - who knows. Perhaps this system calculated the rating for Tournaments in which no more than 11 players could participate (this was limited by the rules of the game for which the rating was calculated using this system). Maybe this number is related to this fact??? Who understands formulas? Say something? :)