#include<stdio.h>
#include<algorithm>
using namespace std;
int main(){
int n;
scanf("%d",&n);
while(n--){
long long int a[3],e;
scanf("%lld%lld%lld",&a[0],&a[1],&a[2]);
if(a[0]>a[1]){
e=a[0];
a[0]=a[1];
a[1]=e;
}if(a[0]>a[2]){
e=a[1];
a[1]=a[2];
a[2]=e;
}if(a[1]>a[2]){
e=a[1];
a[1]=a[2];
a[2]=e;
}
a[0]+=a[1];
printf("%lld\n",a[0]*a[0]+a[2]*a[2]);
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
36 ms |
1084 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
43 ms |
1084 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1084 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
48 ms |
1084 KB |
Output is correct |
2 |
Correct |
55 ms |
1084 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1084 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
70 ms |
1084 KB |
Output is correct |
2 |
Correct |
0 ms |
1084 KB |
Output is correct |
3 |
Correct |
50 ms |
1084 KB |
Output is correct |
4 |
Correct |
58 ms |
1084 KB |
Output is correct |
5 |
Correct |
49 ms |
1084 KB |
Output is correct |