주어진 수들의 구간합을 구하는 문제. 단순히 생각하면 다음과 같은 풀이를 구할 수 있다. // 해설참조 : sehyeok.tistory.com import java.io.IOException; import java.util.Scanner; public class Main { public static void main(String args[]) throws IOException { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); int[] num = new int[n]; for (int i = 0; i < n; i++) { num[i] = sc.nextInt(); } for (int i = 0; i < m; i..