summaryrefslogtreecommitdiff
path: root/progs/a133.py
blob: d2ce9617418bebf0e18c53bfe1ba9797cee94c6a (plain)
1
2
3
4
5
6
7
8
9
10
def sum_Of_Subarray_Prod(arr,n):
    ans = 0
    res = 0
    i = n - 1
    while (i >= 0):
        incr = arr[i]*(1 + res)
        ans += incr
        res = incr
        i -= 1
    return (ans)