#include<stdio.h>
int main()
{
int n,i,a,b,c,mm=99999999,gil1,gil2,gil3;
scanf("%d",&n);
for(i=1; i<=n; i++){
scanf("%d %d %d",&a,&b,&c);
gil1=(b+c)*(b+c)+a*a;
gil2=(a+c)*(a+c)+b*b;
gil3=(a+b)*(a+b)+c*c;
if(gil1<mm) mm=gil1;
if(gil2<mm) mm=gil2;
if(gil3<mm) mm=gil3;
}
printf("%d",mm);
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
24 ms |
1088 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
20 ms |
1088 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
32 ms |
1088 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
32 ms |
1088 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
32 ms |
1088 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
36 ms |
1088 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |