#include<stdio.h>
#include<iostream>
using namespace std;
int main()
{
int n,a,b,c,i,d,e,f,x=0;
scanf("%d", &n);
for(i=1; i<=n; i++){
scanf("%d %d %d", &a,&b,&c);
x=0;
if(a==0 || b==0 || c==0) x=1;
d=(a+b)*(a+b)+c*c;
e=(a+c)*(a+c)+b*b;
f=(b+c)*(b+c)+a*a;
if(x==0){
if(d<=e && d<=f) printf("%d\n", d);
else if(e<=e && e<=f) printf("%d\n", e);
else if(f<=e && f<=f) printf("%d\n", f);
}
else printf("0");
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
29 ms |
1376 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
28 ms |
1376 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
30 ms |
1376 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
36 ms |
1376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
50 ms |
1376 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
59 ms |
1376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |