본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 10501번 Ragged Right

by 현장 2024. 8. 22.

-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)