summaryrefslogtreecommitdiff
path: root/progs/a310.py
blob: 09962eb805f20013e9927ab99ce4be62db57f920 (plain)
1
2
3
4
def maximum_product(nums):
    import heapq
    a, b = heapq.nlargest(3, nums), heapq.nsmallest(2, nums)
    return max(a[0] * a[1] * a[2], a[0] * b[0] * b[1])