-Code
arr = []
res = 0
while True:
try:
arr.append(len(input()))
except:
break
max_len = max(arr)
for el in arr[:-1]:
res += (max_len - el) ** 2
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 27512번 스네이크 (0) | 2024.08.24 |
---|---|
[백준/파이썬] 11294번 Numbers (0) | 2024.08.23 |
[백준/파이썬] 21614번 Secret Instructions (0) | 2024.08.21 |
[백준/파이썬] 10902번 Penalty calculation (0) | 2024.08.20 |
[백준/파이썬] 24408번 Mult! (0) | 2024.08.19 |