█████████ ████ ███░░░░░███ ░░███ ███ ░░░ ██████ ███████ ██████ ██████ ░███ ███░░███ ███░░███ ███░░███ ███░░███ ░███ ░███ ░███░███ ░███ ░███████ ░███ ░███ ░░███ ███░███ ░███░███ ░███ ░███░░░ ░███ ░███ ░░█████████ ░░██████ ░░████████░░██████ ░░██████ ░░░░░░░░░ ░░░░░░ ░░░░░░░░ ░░░░░░ ░░░░░░

Envío 909

Problema 0xe1 - Cuadrado mágico

  • Autor: Andres Ariza
  • Fecha: 2020-09-28 04:11:13 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.02 s 3 KBi
#2
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.023 s 3 KBi
#3
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.023 s 3 KBi
#4
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.022 s 3 KBi
#5
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.021 s 3 KBi
#6
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.02 s 3 KBi
#7
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.022 s 3 KBi
#8
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.024 s 3 KBi
#9
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.02 s 3 KBi
#10
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.021 s 3 KBi
#11
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.02 s 3 KBi
#12
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.028 s 6 KBi
#13
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.022 s 3 KBi
#14
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.024 s 3 KBi
#15
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.023 s 3 KBi
#16
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.02 s 3 KBi
#17
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.023 s 3 KBi
#18
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.02 s 3 KBi
#19
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.021 s 3 KBi
#20
Error en tiempo de ejecución (NZEC)
Exited with error status 1
  File "script.py", line 1
    N = int(input())
    ^
IndentationError: unexpected indent
0.022 s 3 KBi
Puntos totales: 0 / 100

Código

 N = int(input())
M = [[int(n) for n in input().split()] for _ in range(N)]
want = sum(M[0])
for r in range(N):
    sum_row = sum_col = sum_D1 = sum_D2 = 0
    for c in range(N):
        sum_row += M[r][c]
        sum_col += M[c][r]
        sum_D1 += M[c][c]
        sum_D2 += M[c][N-c-1]
    if want != sum_row or want != sum_col or want != sum_D1 or want != sum_D2:
            print("No")
            break
else:
    print("Yes")