Result: Accepted
Time: 6ms
Memory: 1092kB
#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");
}
}