백준 11659 구간합구하기 4 : https://www.acmicpc.net/problem/11659
수 N개가 주어졌을 때, i번째 수부터 j번째 수까지 합을 구하는 프로그램을 작성하시오.
첫째 줄에 수의 개수 N과 합을 구해야 하는 횟수 M이 주어진다. 둘째 줄에는 N개의 수가 주어진다. 수는 1,000보다 작거나 같은 자연수이다. 셋째 줄부터 M개의 줄에는 합을 구해야 하는 구간 i와 j가 주어진다.
총 M개의 줄에 입력으로 주어진 i번째 수부터 j번째 수까지 합을 출력한다.
1 ≤ N ≤ 100,000
1 ≤ M ≤ 100,000
1 ≤ i ≤ j ≤ N
5 3
5 4 3 2 1
1 3
2 4
5 5
12
9
1
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String args[]) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
StringBuilder ans = new StringBuilder("");
int n=Integer.parseInt(st.nextToken());
int t=Integer.parseInt(st.nextToken());
int nums[]=new int[n];
st=new StringTokenizer(br.readLine());
nums[0]=Integer.parseInt(st.nextToken());
for(int i=1;i<n;i++){
nums[i]=nums[i-1]+Integer.parseInt(st.nextToken());
}
for(int i=0;i<t;i++){
st=new StringTokenizer(br.readLine());
int l=Integer.parseInt(st.nextToken())-1;
int r=Integer.parseInt(st.nextToken())-1;
if(l==0){
ans.append(nums[r]).append("\n");
}
else{
ans.append(nums[r]-nums[l-1]).append("\n");
}
}
System.out.println(ans);
}
}
StringBuilder 생활화 중!