#include <string>
#include <vector>
#include <iostream>
#include <map>
#include <algorithm>
using namespace std;
int main(void)
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n, m;
cin >> n >> m;
vector<vector<int>> a(n + 1, vector<int>(n + 1, 0));
vector<vector<int>> d(n + 1, vector<int>(n + 1, 0));
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= n; j++)
{
cin >> a[i][j];
d[i][j] = d[i][j - 1] + d[i - 1][j] - d[i - 1][j - 1] + a[i][j];
}
}
for (int i = 0; i < m; i++)
{
int x1, y1, x2, y2;
cin >> x1 >> y1 >> x2 >> y2;
int result = d[x2][y2] - d[x1 - 1][y2] - d[x2][y1 - 1] + d[x1 - 1][y1 - 1];
cout << result << "\n";
}
return 0;
}
'콘솔창 & 윈도우창 > 코딩 테스트' 카테고리의 다른 글
프로그래머스 LV.1 명예의 전당 (1) | 2024.10.13 |
---|---|
[백준 실버5] 수들의 합5 2018 (1) | 2024.10.07 |
프로그래머스 C++ Lv.2 퍼즐게임 (PCCP 기출문제 2번) (0) | 2024.09.24 |
프로그래머스 - Lv.1 동영상 재생기 (0) | 2024.09.23 |
프로그래머스 LV.1 폰켓몬 (0) | 2024.08.17 |