a860: Magic Squares
Tags : if 列表 巢狀迴圈 矩陣 累加 迴圈
Accepted rate : 23人/24人 ( 96% ) [非即時]
評分方式:
Tolerant

最近更新 : 2022-10-26 13:14

Content

Magic Squares are square arrays of numbers that have the interesting property that the numbers in each column, and in each row, all add up to the same total.

Given a 4 × 4 square of numbers, determine if it is magic square.

Input

The input consists of four lines, each line having 4 space-separated integers.

Output

Output either "magic" if the input is a magic square, or "not magic" if the input is not a magic square.

Sample Input #1
16 3 2 13
5 10 11 8
9 6 7 12
4 15 14 1
Sample Output #1
magic
Sample Input #2
5 10 1 3
10 4 2 3
1 2 8 5
3 3 5 0
Sample Output #2
not magic
測資資訊:
記憶體限制: 64 MB
公開 測資點#0 (10%): 1.0s , <1K
公開 測資點#1 (10%): 1.0s , <1K
公開 測資點#2 (10%): 1.0s , <1K
公開 測資點#3 (10%): 1.0s , <1K
公開 測資點#4 (10%): 1.0s , <1K
公開 測資點#5 (10%): 1.0s , <1K
公開 測資點#6 (10%): 1.0s , <1K
公開 測資點#7 (10%): 1.0s , <1K
公開 測資點#8 (10%): 1.0s , <1K
公開 測資點#9 (10%): 1.0s , <1K
Hint :
Tags:
if 列表 巢狀迴圈 矩陣 累加 迴圈
出處:
CCC2016 [管理者:
issin@g.puic... (冼一心老師)
]


ID User Problem Subject Hit Post Date
沒有發現任何「解題報告」