def getMaxThroughput(host_throughput):
    sorted_throughput = sorted(host_throughput, reverse=True)
    system_throughput = 0
    
    for i in range(0, len(sorted_throughput) - 2, 3):
        system_throughput += sorted_throughput[i + 1]
    
    return system_throughput

