# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
1571 |
2013-07-09T10:14:09 Z |
ainta |
개미 (GA4_ant) |
C++ |
|
75 ms |
884 KB |
#include<stdio.h>
int main()
{
int Tcase;
long long a,b,c,d,e,f;
scanf("%d",&Tcase);
while(Tcase--)
{
scanf("%lld%lld%lld",&a,&b,&c);
d=a*a+(b+c)*(b+c);
e=b*b+(c+a)*(c+a);
f=c*c+(a+b)*(a+b);
if(d>e)d=e;
if(d>f)d=f;
printf("%lld\n",d);
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
54 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
46 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
47 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
53 ms |
884 KB |
Output is correct |
2 |
Correct |
51 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
52 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
63 ms |
884 KB |
Output is correct |
2 |
Correct |
69 ms |
884 KB |
Output is correct |
3 |
Correct |
75 ms |
884 KB |
Output is correct |
4 |
Correct |
72 ms |
884 KB |
Output is correct |
5 |
Correct |
62 ms |
884 KB |
Output is correct |