--- lottery_2018.py 2018-11-13 10:06:07.000000000 +0000 +++ lottery_2018_22.py 2018-11-13 10:02:53.000000000 +0000 @@ -20,7 +20,7 @@ h = (h * 33 + c) % (1 << 64) x = (m + h) % (1 << 64) - for _ in range(20): + for _ in range(22): x = (x * 6364136223846793005 + 1) % (1 << 64) y = (x >> 32) % len(users) print(users[y].decode())