# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
1916 |
2013-07-19T10:35:22 Z |
gs13105 |
개미 (GA4_ant) |
C++ |
|
60 ms |
884 KB |
#include <stdio.h>
int main()
{
int T,i;
long long a,b,c;
scanf("%d",&T);
for(i=0;i<T;i++)
{
scanf("%lld%lld%lld",&a,&b,&c);
if(a>=b&&a>=c)
printf("%lld\n",a*a+(b+c)*(b+c));
else
{
if(b>=c)
printf("%lld\n",b*b+(a+c)*(a+c));
else
printf("%lld\n",c*c+(a+b)*(a+b));
}
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
43 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
46 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
46 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
49 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 |
60 ms |
884 KB |
Output is correct |
2 |
Correct |
56 ms |
884 KB |
Output is correct |
3 |
Correct |
55 ms |
884 KB |
Output is correct |
4 |
Correct |
57 ms |
884 KB |
Output is correct |
5 |
Correct |
58 ms |
884 KB |
Output is correct |