Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
46385 | ☩Deutschland☩ | 面积 | C++ | 编译错误 | 0 MS | 0 KB | 372 | 2024-05-03 12:02:53 |
#include<bits/stdc++.h> using namespace std; int ans; bool xy[510][510]; int maim(){ int n; cin>>n; int x1,y1,x2,y2; while(n--){ cin>>x1>>y1>>x2>>y2; for(int i=y1+1;i<=y2;i++){ for(int j=x1+1;j<=x2;j++){ xy[i][j]=1; } } } for(int i=1;i<=500;i++){ for(int j=1;j<=500;j++){ if(xy[i][j])ans++; } } cout<<ans; return 0; }