比赛 EYOI暨SBOI暑假快乐赛3rd 评测结果 AAAAAAAATT
题目名称 移动电话 最终得分 80
用户昵称 nick 运行时间 2.829 s
代码语言 C++ 内存使用 6.82 MiB
提交时间 2022-06-27 08:54:48
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int S[1024][1024],s,x,y,a,l,b,r,t,c;
int main()
{
    freopen("mobilephones.in","r",stdin);
    freopen("mobilephones.out","w",stdout);
    while(cin>>c)
    {
        if(c==0)cin>>s;
        if(c==1)
        {
            cin>>x>>y>>a;
            S[x][y]+=a;
        }
        if(c==2)
        {
            cin>>l>>b>>r>>t;
            long long ans=0;
            for(int i=l;i<=r;i++)
            {
                for(int j=b;j<=t;j++)
                {
                    ans+=S[i][j];
                }
            }
            cout<<ans<<endl;
        }
        if(c==3)break;
    }
    return 0;
 }