#include <cstdio>
#include <algorithm>
using namespace std;
int main() {
long long a, b, c;
int t;
scanf("%d", &t);
for (int i = 0; i < t; i++) {
scanf("%lld %lld %lld", &a, &b, &c);
printf("%lld\n",min(min(c * c + (a + b) * (a + b), b * b + (a + c) * (a + c)),
a * a + (c + b) * (c + b)));
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
43 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
45 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
51 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
51 ms |
884 KB |
Output is correct |
2 |
Correct |
48 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
49 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
57 ms |
884 KB |
Output is correct |
2 |
Correct |
49 ms |
884 KB |
Output is correct |
3 |
Correct |
59 ms |
884 KB |
Output is correct |
4 |
Correct |
53 ms |
884 KB |
Output is correct |
5 |
Correct |
60 ms |
884 KB |
Output is correct |