답안 #5630

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
5630 2014-05-08T23:47:54 Z gs13073 개미 (GA4_ant) C++
100 / 100
60 ms 1088 KB
#include<stdio.h>
long long min(long long x,long long y){return x>y?y:x;}
int main()
{
  int T;
  scanf("%d",&T);
  long long a,b,c;
  while(T--){
  scanf("%lld %lld %lld",&a,&b,&c);
  long long l=(a+b)*(a+b)+c*c;
  long long ll=a*a+(b+c)*(b+c);
  long long lll=(a+c)*(a+c)+b*b;
  printf("%lld\n",min(min(l,ll),lll));
  }
  return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 48 ms 1088 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 44 ms 1088 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 52 ms 1088 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 48 ms 1088 KB Output is correct
2 Correct 48 ms 1088 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 52 ms 1088 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 60 ms 1088 KB Output is correct
2 Correct 48 ms 1088 KB Output is correct
3 Correct 48 ms 1088 KB Output is correct
4 Correct 52 ms 1088 KB Output is correct
5 Correct 52 ms 1088 KB Output is correct