# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
2235 |
2013-07-20T14:01:46 Z |
kriii |
개미 (GA4_ant) |
C++ |
|
58 ms |
884 KB |
#include <stdio.h>
long long min(long long a, long long b){return a < b ? a : b;}
int main()
{
int T; long long a,b,c;
scanf ("%d",&T); while (T--){
scanf ("%lld %lld %lld",&a,&b,&c);
printf ("%lld\n",min((a+b)*(a+b)+c*c,min((a+c)*(a+c)+b*b,(b+c)*(b+c)+a*a)));
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
47 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
47 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
47 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
52 ms |
884 KB |
Output is correct |
2 |
Correct |
50 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
53 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
53 ms |
884 KB |
Output is correct |
2 |
Correct |
55 ms |
884 KB |
Output is correct |
3 |
Correct |
57 ms |
884 KB |
Output is correct |
4 |
Correct |
55 ms |
884 KB |
Output is correct |
5 |
Correct |
58 ms |
884 KB |
Output is correct |