[백준] #10798 세로읽기 python
2023. 3. 20. 06:00
https://www.acmicpc.net/problem/10798
📕 설명 📕
python의 indexing을 사용하여 길이에 상관없이 받아오도록 했다.
🧑🏻💻 나의 풀이 🧑🏻💻
re = []
max_ = 0
result = ""
for i in range(5):
re.append(input())
if max_ < len(re[i]):
max_ = len(re[i])
for i in range(1,max_+1):
for j in re:
result += j[i-1:i]
print(result)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #24262 알고리즘 수업 - 알고리즘의 수행 시간 1 (0) | 2023.03.22 |
---|---|
[백준] #1735 분수 합 python (1) | 2023.03.21 |
[백준] #25206 너의 평점은 python (0) | 2023.03.19 |
[백준] #10812 바구니 순서 바꾸기 python (0) | 2023.03.18 |
[백준] #11718 그대로 출력하기 python (0) | 2023.03.16 |