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