Submission #15326

#TimeUsernameProblemLanguageResultExecution timeMemory
15326ttgame님 무기가 좀 나쁘시네여 (kriii3_S)C++98
0 / 29
0 ms1084 KiB
# include <stdio.h> # include <algorithm> using namespace std; int main(void) { double x1,y1,i1,j1,k1,x2,y2,i2,j2,k2; double a1,b1,c1,d1,e1,a2,b2,c2,d2,e2; double temp1,temp2; double a,b; double q,w,e,r; scanf("%lf %lf %lf %lf %lf",&x1,&y1,&i1,&j1,&k1); scanf("%lf %lf %lf %lf %lf",&x2,&y2,&i2,&j2,&k2); scanf("%lf %lf %lf %lf %lf",&a1,&b1,&c1,&d1,&e1); scanf("%lf %lf %lf %lf %lf",&a2,&b2,&c2,&d2,&e2); if(i1/100>1) a=1; else a= i1/100; if((i1-c1+c2)/100>1) b=1; else b= (i1-c1+c2)/100; q = x1-a1+a2; w = y1-b1+b2; e = j1-d1+d2; r = k1-e1+e2; if(q>20000) q=20000; if(w>20000) w=20000; if(e>500) e=500; if(r>500) r=500; temp1 = x1*(1+y1/100)*((1-a)+a*j1)*(1+k1/100); temp2 = q*(1+w/100)*((1-b)+b*e)*(1+r/100); if(temp1>temp2) printf("-\n"); else if(temp2>temp1) printf("+\n"); else printf("0\n"); if(i2/100>1) a=1; else a= i2/100; if((i2-c2+c1)/100>1) b=1; else b= (i2-c2+c1)/100; q = x2-a2+a1; w = y2-b2+b1; e = j2-d2+d1; r = k2-e2+e1; if(q>20000) q=20000; if(w>20000) w=20000; if(e>500) e=500; if(r>500) r=500; temp1 = x2*(1+y2/100)*((1-a)+a*j2)*(1+k2/100); temp2 = q*(1+w/100)*((1-b)+b*e)*(1+r/100); if(temp1>temp2) printf("-\n"); else if(temp2>temp1) printf("+\n"); else printf("0\n"); return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...