#!/bin/python3
import math
import os
import random
import re
import sys
# Complete the formingMagicSquare function below.
def formingMagicSquare(s):
result = []
magic_Square_Lists = [
[8, 1, 6, 3, 5, 7, 4, 9, 2],
[6, 1, 8, 7, 5, 3, 2, 9, 4],
[4, 9, 2, 3, 5, 7, 8, 1, 6],
[2, 9, 4, 7, 5, 3, 6, 1, 8],
[8, 3, 4, 1, 5, 9, 6, 7, 2],
[4, 3, 8, 9, 5, 1, 2, 7, 6],
[6, 7, 2, 1, 5, 9, 8, 3, 4],
[2, 7, 6, 9, 5, 1, 4, 3, 8]
]
new_s = sum(s, [])
for magic_Square_List in magic_Square_Lists:
compare = 0
for i in range(9):
compare += abs(magic_Square_List[i] - new_s[i])
result.append(compare)
#print(result)
return min(result)
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
s = []
for _ in range(3):
s.append(list(map(int, input().rstrip().split())))
result = formingMagicSquare(s)
fptr.write(str(result) + '\n')
fptr.close()
'HackerRank' 카테고리의 다른 글
Day 23: BST Level-Order Traversal Python (HackerRank) (0) | 2021.10.21 |
---|---|
Day 22: Binary Search Trees Python (HackerRank) (0) | 2021.10.21 |
Between Two Sets (HackerRank | Python) (0) | 2021.10.21 |