Impressing Chefina

I am not getting the question CodeChef: Practical coding for everyone as per my understanding the o/p should be symmetrical about y axis passing from middle column but accepted o/p of other user is showing something else.
my code o/p for i/p :
1
3 5
1 11 5 4 7
4 2 3 2 4
1 2 3 7 2

is :
1 4 11 4 1
7 2 5 2 7
2 3 4 3 2

but accepted user o/p are :
o/p of user1 :
1 2 11 1 2
2 3 5 2 3
4 7 4 4 7
and other user 2(AC) :
1 11 5 4 7
4 2 3 2 4
1 2 3 7 2
etc.
Please someone help me out.

First of all, stop

You should link the accepted submissions that are wrong. However, most likely, the codechef test data was weak. Not the first time it’s happened, even just for this contest alone…

ok I will try to be more clear next time as per your

so you mean my output for test case is correct?
Well this(accepting WA) is misleading for newbie like us to learn .