比赛 |
EYOI暨SBOI暑假快乐赛3rd |
评测结果 |
AAAAAAAATT |
题目名称 |
移动电话 |
最终得分 |
80 |
用户昵称 |
ムラサメ |
运行时间 |
2.816 s |
代码语言 |
C++ |
内存使用 |
6.95 MiB |
提交时间 |
2022-06-27 09:55:42 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,temp,ord;
int s[1030][1030];
void work1(){
int x,y,a;
cin>>x>>y>>a;
s[x][y]+=a;
}
void work2(){
unsigned long long cnt=0;
int l,b,r,t;
cin>>l>>b>>r>>t;
for(int i=l;i<=r;i++){
for(int j=b;j<=t;j++){
cnt+=s[i][j];
}
}
cout<<cnt<<endl;
}
int main(){
freopen("mobilephones.in","r",stdin);
freopen("mobilephones.out","w",stdout);
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
memset(s,0,sizeof(s));
cin>>temp>>n;
for(;;){
cin>>ord;
if(ord==1){
work1();
}
else{
if(ord==2){
work2();
}
else{
return 0;
}
}
}
return 0;
}