import sys
n_input = sys.stdin.readline
def column(words):
max_len = max(len(word) for word in words)
# 가장 긴 단어의 길이에 맞춰야 빈공간이 생겼을 때 오류가 안나옵니다.
result = ''
for i in range(max_len):
for word in words:
if i < len(word):
# i=[0]일 때 첫 번째 열 i=[1]일 때 두 번째 열...
result += word[i]
return result
words = []
for _ in range(5):
words.append(n_input().rstrip())
print(column(words))
'코딩 연습 > 백준 코드' 카테고리의 다른 글
빙고-2578.py (0) | 2023.10.18 |
---|---|
블랙잭-2798.py (0) | 2023.10.18 |
수강신청-13414.py (0) | 2023.10.18 |
암호해독기-17176.py (0) | 2023.10.18 |
요세푸스-1158.py (0) | 2023.10.18 |