728x90
반응형
문제
https://www.acmicpc.net/problem/11403
문제 풀이
import sys
N = int(sys.stdin.readline())
maps = [list(map(int, sys.stdin.readline().split())) for _ in range(N)]
for k in range(N):
for y in range(N):
for x in range(N):
if maps[y][k] and maps[k][x]:
maps[y][x] = 1
for m in maps:
print(' '.join(list(map(str, m))))
728x90
반응형
'IT > 알고리즘' 카테고리의 다른 글
[백준] 2468 파이썬(python) (0) | 2022.01.08 |
---|---|
[백준] 1697 파이썬(python) (0) | 2022.01.08 |
[백준] 9372 파이썬(python) (0) | 2022.01.08 |
[백준] 7569 파이썬(python) (0) | 2022.01.08 |
[Python] 백준 11724 - 연결 요소의 개수 (0) | 2021.11.07 |