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

[백준/파이썬] 11880번 개미

by 현장 2024. 8. 1.

-Code

from sys import stdin

input = stdin.readline
for _ in range(int(input())):
    line = list(map(int, input().split()))
    res = []

    for i in range(3):
        res.append(line[i] ** 2 + (sum(line) - line[i]) ** 2)

    print(min(res))