Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
33508 | liusiyu | 子矩阵元素和 | C++ | 通过 | 0 MS | 252 KB | 378 | 2023-12-09 19:44:58 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m,q; cin>>n>>m>>q; int a[n][m]; for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ cin>>a[i][j]; } } while(q--){ int x1,y1,x2,y2,sum=0; cin>>x1>>y1>>x2>>y2; for(int i=x1-1;i<=x2-1;i++){ for(int j=y1-1;j<=y2-1;j++){ sum+=a[i][j]; } } cout<<sum<<endl; } return 0; }