Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- react-redux
- 프로그래머스
- js to ts
- error
- C++
- Redux
- 자료구조
- Operating System
- 토이프로젝트
- 백준
- 타입스크립트
- 분할메모리할당
- 협업
- Java
- CPU 스케줄링
- 공부
- OS
- 기초100제
- memory
- 코드업
- 파이썬
- 일상
- 알고리즘
- 정렬
- Spring
- web
- react
- codeup
- 리덕스장바구니
- 스프링
Archives
- Today
- Total
감자튀김 공장🍟
[백준/2738] 행렬 덧셈 (with 파이썬) 본문
반응형
✔ 문제
✔ 풀이
import sys
input = sys.stdin.readline
n, m = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(n)]
b = [list(map(int, input().split())) for _ in range(n)]
for i in range(n):
for j in range(m):
a[i][j] += b[i][j]
for i in range(n):
print(*a[i])
✔ 설명
a[i][j]에 b[i][j]값을 그대로 더한 후 a를 출력하면 된다.
반응형
'Algorithm > BOJ' 카테고리의 다른 글
[백준/10807] 개수 세기 (with 파이썬) (0) | 2022.11.05 |
---|---|
[백준/2566] 최댓값 (with 파이썬) (0) | 2022.11.04 |
[백준/9020] 골드바흐의 추측 (with 파이썬) (0) | 2022.11.02 |
[백준/4948] 베르트랑 공준 (with 파이썬) (0) | 2022.11.01 |
[백준/1929] 소수 구하기 (with 파이썬) (0) | 2022.10.31 |
Comments