보안을 그리다, 훈이

[Baekjoon/Python3] 2738번 행렬 덧셈 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 2738번 행렬 덧셈

HooNeee 2020. 12. 4. 01:52

[Baekjoon/Python3] 2738번 행렬 덧셈

 

www.acmicpc.net/problem/2738

 

2738번: 행렬 덧셈

첫째 줄에 행렬의 크기 N 과 M이 주어진다. 둘째 줄부터 N개의 줄에 행렬 A의 원소 M개가 차례대로 주어진다. 이어서 N개의 줄에 행렬 B의 원소 M개가 차례대로 주어진다. N과 M은 100보다 작거나 같

www.acmicpc.net

 

n, m = map(int, input().split())
a, b = [], []
for i in [a, b]:
    for j in range(n):
        i.append(list(map(int, input().split())))
for i in range(n):
    for j in range(m):
        a[i][j] += b[i][j]
    print(*a[i])

 

Comments