#include <cstdio>
typedef long long ll;
ll min(ll a,ll b){ if(!a && !b) return 1LL<<60; if(!a) return b; if(!b) return a; return a>b?b:a;}
ll min(ll a,ll b,ll 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("%lld\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 |
Incorrect |
46 ms |
1084 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
34 ms |
1084 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
39 ms |
1084 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
39 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 |
Correct |
69 ms |
1084 KB |
Output is correct |
2 |
Correct |
0 ms |
1084 KB |
Output is correct |
3 |
Correct |
73 ms |
1084 KB |
Output is correct |
4 |
Correct |
71 ms |
1084 KB |
Output is correct |
5 |
Correct |
0 ms |
1084 KB |
Output is correct |