아이디어 presum을 미리 구해두고 (나는 dp라고 명명) 빨간색 구역의 합은 dp[r2][c2]에서 주황색 두부분을 빼고, 초록색 영역을 다시 더해줌으로써 구할 수 있다. C++풀이 #include using namespace std; typedef long long int ll; int R,C,Q; int board[1000][1000]; int dp[1001][1001]; int r1,c1,r2,c2; int main(void) { ios::sync_with_stdio(false); cin.tie(NULL); cin >> R >> C >> Q; for(int i = 0 ; i> tmp; board[..