#include<stdio.h>
#include<algorithm>
long long int a,b,c;
int main()
{
int t;scanf("%d",&t);
while(t--){
scanf("%lld%lld%lld",&a,&b,&c);
long long int ans=0x7fffffffffffffffll;
ans=std::min(ans,a*a+(b+c)*(b+c));
ans=std::min(ans,b*b+(a+c)*(a+c));
ans=std::min(ans,c*c+(a+b)*(a+b));
printf("%lld\n",ans);
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
43 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
44 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
46 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
52 ms |
884 KB |
Output is correct |
2 |
Correct |
49 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
56 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
54 ms |
884 KB |
Output is correct |
2 |
Correct |
49 ms |
884 KB |
Output is correct |
3 |
Correct |
55 ms |
884 KB |
Output is correct |
4 |
Correct |
57 ms |
884 KB |
Output is correct |
5 |
Correct |
56 ms |
884 KB |
Output is correct |