记录编号 |
453574 |
评测结果 |
AAAAAAAAAA |
题目名称 |
失落的猴子 |
最终得分 |
100 |
用户昵称 |
. |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.883 s |
提交时间 |
2017-09-21 19:16:53 |
内存使用 |
4.17 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<iomanip>
using namespace std;
int ge[1005][1005];
int main(){
freopen("lostmonkey.in","r",stdin);
freopen("lostmonkey.out","w",stdout);
int n,m,k,x1,y1,x2,y2,t,y;
cin>>n>>m>>k;
for(int a=1;a<=k;a++){
cin>>x1>>y1>>x2>>y2>>t;
y=y1;
for(x1;x1<=x2;x1++){
for(y1=y;y1<=y2;y1++){
ge[x1][y1]=t;
}
}
}
for(int a=1;a<=m;a++){
for(int b=1;b<=n;b++){
cout<<ge[a][b];
}
cout<<endl;
}
return 0;
}