[백준] #3035 스캐너 python
2023. 2. 24. 06:00
https://www.acmicpc.net/problem/3035
📕 설명 📕
행렬의 개수를 세어 굳이 출력을 만들지 않고 list에 넣어 출력이 행렬처럼 나오도록 구현하였습니다.
🧑🏻💻 나의 풀이 🧑🏻💻
R, C, ZR, ZC = map(int, input().split())
res = []
for _ in range(R):
li = input()
result = ""
for i in li:
result += i * ZC
for i in range(ZR):
res.append(result)
for i in res:
print(i)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #4493 가위 바위 보? python (0) | 2023.02.26 |
---|---|
[백준] #3047 ABC python (0) | 2023.02.25 |
[백준] #2966 찍기 python (1) | 2023.02.23 |
[백준] #2947 나무 조각 python (0) | 2023.02.22 |
[백준] #2857 FBI python (0) | 2023.02.21 |