#include<cstdio>
int main()
{
int tc,tcn;
long long a,b,c,t;
scanf("%d",&tcn);
for(tc=0;tc<tcn;tc++)
{
scanf("%lld%lld%lld",&a,&b,&c);
if(a>b)
{
t=a;
a=b;
b=t;
}
if(b>c)
{
t=b;
b=c;
c=t;
}
if(a>b)
{
t=a;
a=b;
b=t;
}
printf("%lld\n",(a+b)*(a+b)+c*c);
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
43 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
43 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
48 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
50 ms |
884 KB |
Output is correct |
2 |
Correct |
54 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
65 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
58 ms |
884 KB |
Output is correct |
2 |
Correct |
69 ms |
884 KB |
Output is correct |
3 |
Correct |
73 ms |
884 KB |
Output is correct |
4 |
Correct |
67 ms |
884 KB |
Output is correct |
5 |
Correct |
74 ms |
884 KB |
Output is correct |