The "Think About It" name usually hints at an elusive trick to the question. There doesn't appear to be a trick anywhere; here's my best attempt:
If we arrange the players into two-player groups, we'll cut the players in half. 128 games have been played.
Here is the player to game progression:
(256,0)
(128,128)
(64,128 + 64)
(32, 128 + 64 + 32)
(16, 128 + 64 + 32 + 16)
(8, 128 + 64 + 32 + 16 + 8)
(4, 128 + 64 + 32 + 16 + 8 + 4)
(2, 128 + 64 + 32 + 16 + 8 + 4 + 2)
(1, 128 + 64 + 32 + 16 + 8 + 4 + 2 + 1)
Fun fact: sum of powers of 2 starting from 2^0 up to 2^n = 2^n-1
Proof: our answer is 255.
Oh man... now I get the trick (think about it).