Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
35609 WZH 面积 C++ 通过 1 MS 1224 KB 360 2024-01-02 21:52:06

Tests(1/1):


#include<iostream> using namespace std; int a[501][501],n; int main() { cin>>n; while(n--){ int x1,x2,y1,y2; cin>>x1>>y1>>x2>>y2; for(int j=x1;j<x2;j++){ for(int i=y1;i<y2;i++){ a[i][j]=1; } } } int cnt=0; for(int i=1;i<=500;i++){ for(int j=1;j<=500;j++){ if(a[i][j]==1){ cnt++; } } } cout<<cnt; }


测评信息: