#include <stdio.h>
long long int min (long long int a, long long int b, long long int c)
{
if (a <= b && a <= c)
return a;
else if (b <= a && b <= c)
return b;
return c;
}
int main ()
{
int n;
scanf ( "%d", &n);
for (int i = 0; i < n; ++i)
{
long long int s1, s2, s3;
scanf ("%lld %lld %lld", &s1, &s2, &s3);
long long int sol;
sol = min (s1 * s1 + (s2 + s3) * (s2 + s3), (s1 + s2) * (s1 + s2) + s3 * s3, (s1 + s3) * (s1 + s3) + s2 * s2);
printf ("%lld\n", sol);
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
45 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
44 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
55 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
51 ms |
884 KB |
Output is correct |
2 |
Correct |
54 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
56 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
51 ms |
884 KB |
Output is correct |
2 |
Correct |
58 ms |
884 KB |
Output is correct |
3 |
Correct |
57 ms |
884 KB |
Output is correct |
4 |
Correct |
55 ms |
884 KB |
Output is correct |
5 |
Correct |
61 ms |
884 KB |
Output is correct |