1467: 魔方矩阵
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:2
Solved:2
Description
由键盘输入一个5*5阶矩阵,判断该矩阵是否是魔方矩阵。
魔方矩阵的定义:每一行、每一列、每一对角线上的元素之和分别相等。
程序的运行示例1:
17 24 1 8 15↙
23 5 7 14 16↙
4 6 13 20 22↙
10 12 19 21 3↙
11 18 25 2 9↙
It is a magic square!
程序的运行示例2:
12 56 87 89 14↙
35 62 77 41 98↙
53 67 89 94 33↙
78 21 15 36 16↙
67 84 52 19 23↙
It is not a magic square!
Input
输入格式:
"%d"
Output
输出格式:
不是魔方矩阵:"It is not a magic square!\n"
是魔方矩阵: "It is a magic square!\n"
Sample Input Copy
17 24 1 8 15
23 5 7 14 16
4 6 13 20 22
10 12 19 21 3
11 18 25 2 9
Sample Output Copy
It is a magic square!