2212: 斜对角线对称的矩阵
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:31
Solved:7
Description
判断一个m*m的矩阵是否斜对角线对称的矩阵。
Input
第一行:输入m;
第二行:输入m行,每行个数字。
第二行:输入m行,每行个数字。
Output
输出yes or no
Sample Input Copy
3
1 2 3
2 6 2
3 2 5
Sample Output Copy
yes
HINT
【输入样例2】
4
1 2 3 4
2 3 4 6
3 4 5 7
4 6 7 2
【输出样例2】
yes
4
1 2 3 4
2 3 4 6
3 4 5 7
4 6 7 2
【输出样例2】
yes