백준2167: 2차원 배열의 합
문제
https://www.acmicpc.net/problem/2167
문제 풀이
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int M = sc.nextInt();
int[][] arr = new int[N][M];
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
arr[i][j] = sc.nextInt();
}
}
int K = sc.nextInt();
while (K-- > 0) {
int i = sc.nextInt();
int j = sc.nextInt();
int x = sc.nextInt();
int y = sc.nextInt();
int sum = 0;
for (int a = i - 1; a < x; a++) {
for (int b = j - 1; b < y; b++) {
sum += arr[a][b];
}
}
System.out.println(sum);
}
}
}
댓글남기기