You are viewing a single comment's thread. Return to all comments →
import java.io.*; import java.util.*; public class Solution { public static void main(String[] args) { Scanner in=new Scanner(System.in); int n=in.nextInt(); int[] arr=new int[n]; for(int i=0;i<n;i++){ arr[i]=in.nextInt(); } int count=0; for(int i=0;i<n;i++){ int sum=0; for(int j=i;j<n;j++){ sum=sum+arr[j]; if(sum<0){ count++; } } } System.out.println(count); } }
Seems like cookies are disabled on this browser, please enable them to open this website
Java Subarray
You are viewing a single comment's thread. Return to all comments →
java