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