# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
2174 | minchurl | 개미 (GA4_ant) | C++98 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<stdio.h>
int t;
long long x,y,z,dap;
FILE *in,*out;
void input();
void solve();
void output();
int main(){
in=stdio;//fopen("input.txt","r");
out=stdout;//fopen("output.txt","w");
input();
return 0;
}
void input(){
int i;
fscanf(in,"%d",&t);
for(i=0;i<t;i++){
fscanf(in,"%d %d %d",&x,&y,&z);
solve();
output();
}
}
void solve(){
long long a,b,c;
dap=0;
a=(x*x)+((y+z)*(y+z));
b=(y*y)+((x+z)*(x+z));
c=(z*z)+((x+y)*(x+y));
if(a>b){
if(a>c){
dap=a;
}else{
dap=c;
}
}else{
if(b>c){
dap=b;
}else{
dap=c;
}
}
}
void output(){
fprintf(out,"%lld\n",dap);
}