Count indices where left prefix sum >= right suffix sum.
Compute total sum. Scan left accumulating prefix; check if prefix >= total-prefix.
- Compute total sum
- Track prefix sum while scanning
- At each i (0 to n-2): if prefix >= total-prefix count it
- Return count
- Time Complexity: O(n)
- Space Complexity: O(1)