#include <cstdio>
long long min(long long a,long long b){ return a>b?b:a;}
long long min(long long a,long long b,long long c){ return min(min(a,b),c);}
int main(){
int tc;
scanf("%d",&tc);
int a,b,c;
for(;tc--;){
scanf("%d%d%d",&a,&b,&c);
printf("%d\n",1ll*a*a+1ll*b*b+1ll*c*c+min(2ll*a*b,2ll*b*c,2ll*c*a));
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1084 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
42 ms |
1084 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
48 ms |
1084 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
46 ms |
1084 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1084 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
45 ms |
1084 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |