#include<stdio.h>
using namespace std;
int main()
{
int i,j,y,x;
int a[100][100];
while(scanf("%d %d", &i, &j))
{
for(y=0;y<i;y++)
{
for(x=0;x<j;x++)
scanf("%d", &a[y][x]);
}
for(x=0;x<j;x++)
{
for(y=0;y<i;y++)
printf("%d ", a[y][x]);
printf("\n");
}
}
return 0;
}
看別人解答跟我寫的一樣但是一直TLE!!!
為何會這樣?