728x90
#2738
백준 문제 풀이에 감이 떨어진것 같아서 간단한 문제로 몸풀기를 하고 문제를 하나더 풀어보고자한다.
a, b = map(int, input().split())
list1=[]
list2=[]
for i in range (a):
x=list(map(int, input().split()))
list1.append(x)
for i in range (a):
y=list(map(int, input().split()))
list2.append(y)
for row in range (a):
for col in range (b):
print(list1[row][col]+list2[row][col], end=' ')
print()
브론즈5 난이도의 간단한 문제라서 가벼운 마음으로 풀려고 했는데 2차원 배열을 자주 사용하지 않다보니 어색함이 있어서 생각보다 고민하는 과정이 있었다. 꾸준한 코딩 공부의 중요성을 크게 느꼈다.
728x90
'Sketch (Programming Language) > Python' 카테고리의 다른 글
Baekjoon Training #2178 (0) | 2023.01.10 |
---|---|
Baekjoon Training #2563 (0) | 2023.01.07 |
Baekjoon Training #1912 (0) | 2022.12.27 |
Baekjoon Training #1931 (0) | 2022.12.26 |
Baekjoon Training #24499 (0) | 2022.11.09 |