Start: Jun, 26, 2019 08:30:00
2019年度暑期短学期第一天
End: Jun, 26, 2019 11:30:00
Time elapsed:
Time remaining:

Problem_ID: A
Result: Accepted
Time: 6ms
Memory: 1092kB
Author: 2018212212128
In contest: 1273

#include<stdio.h>
main()
{
	int T,n,m,i,j,k,num[124][124],help[124][124],temp;
	scanf("%d",&T);
	while(T--)
	{
		scanf("%d%d%d",&n,&m,&k);
		for(i=0;i<n;i++)
		{
			for(j=0;j<m;j++)
				scanf("%d",&num[i][j]);
		}
		k=k%4;
		while(k--)
		{
			for(i=n-1;i>=0;i--)
			{
				for(j=0;j<m;j++)
				{
					help[j][n-i-1]=num[i][j];
				}
			}
			temp=n;
			n=m;
			m=temp;
			for(i=0;i<n;i++)
			{
				for(j=0;j<m;j++)
					num[i][j]=help[i][j];
			}
		}
		for(i=0;i<n;i++)
		{
			for(j=0;j<m-1;j++)
				printf("%d ",num[i][j]);
			printf("%d\n",num[i][m-1]);
		}
		printf("\n");
	}
}