QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#201329 | #5151. Bottle Flip | Rd_rainydays# | AC ✓ | 1ms | 3856kb | C++14 | 591b | 2023-10-05 13:45:08 | 2023-10-05 13:45:09 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define REP(i,a,b) for(int i=(a),i##_end_=(b);i<i##_end_;++i)
static const int M=5003;
static const int Mod=1000000007;
int h,rrr,dw,da;
double ans,l,r;
double f(double a){
return (dw*a*a+da*h*h-da*a*a)/(da*h-da*a+dw*a);
}
int main(){
scanf("%d%d%d%d",&h,&rrr,&da,&dw);
l=0,r=h*0.5;
REP(i,0,60){
double a=l+(r-l)/3,b=r-(r-l)/3;
if((dw*a*a+da*h*h-da*a*a)*(da*h-da*b+dw*b)<(dw*b*b+da*h*h-da*b*b)*(da*h-da*a+dw*a))r=b;
else l=a;
//cout<<a<<','<<b<<','<<f(a)<<endl;
}
printf("%.9lf\n",(l+r)*0.5);
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3604kb
input:
22 4 1 4
output:
7.333333419
result:
ok found '7.3333334', expected '7.3333333', error '0.0000000'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3688kb
input:
7 2 655 988
output:
3.141594246
result:
ok found '3.1415942', expected '3.1415942', error '0.0000000'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3848kb
input:
1 1 1 2
output:
0.414213568
result:
ok found '0.4142136', expected '0.4142136', error '0.0000000'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
1000 1000 999 1000
output:
499.875099416
result:
ok found '499.8750994', expected '499.8749375', error '0.0000003'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3724kb
input:
1000 1000 1 1000
output:
30.653430305
result:
ok found '30.6534303', expected '30.6534300', error '0.0000000'
Test #6:
score: 0
Accepted
time: 0ms
memory: 3576kb
input:
1 1000 1 1000
output:
0.030653430
result:
ok found '0.0306534', expected '0.0306534', error '0.0000000'
Test #7:
score: 0
Accepted
time: 0ms
memory: 3572kb
input:
1000 1000 482 483
output:
499.741394064
result:
ok found '499.7413941', expected '499.7409326', error '0.0000009'
Test #8:
score: 0
Accepted
time: 1ms
memory: 3856kb
input:
1 1000 482 483
output:
0.499741058
result:
ok found '0.4997411', expected '0.4997409', error '0.0000001'
Test #9:
score: 0
Accepted
time: 1ms
memory: 3600kb
input:
1 1000 1 2
output:
0.414213568
result:
ok found '0.4142136', expected '0.4142136', error '0.0000000'
Test #10:
score: 0
Accepted
time: 0ms
memory: 3612kb
input:
1000 1000 1 2
output:
414.213572748
result:
ok found '414.2135727', expected '414.2135624', error '0.0000000'
Test #11:
score: 0
Accepted
time: 0ms
memory: 3580kb
input:
961 1000 979 983
output:
480.010350174
result:
ok found '480.0103502', expected '480.0101932', error '0.0000003'
Test #12:
score: 0
Accepted
time: 0ms
memory: 3604kb
input:
997 1000 977 983
output:
497.737175457
result:
ok found '497.7371755', expected '497.7369880', error '0.0000004'
Test #13:
score: 0
Accepted
time: 1ms
memory: 3836kb
input:
1 928 1 66
output:
0.109600592
result:
ok found '0.1096006', expected '0.1096006', error '0.0000000'
Test #14:
score: 0
Accepted
time: 0ms
memory: 3736kb
input:
1 928 2 88
output:
0.131005806
result:
ok found '0.1310058', expected '0.1310058', error '0.0000000'
Test #15:
score: 0
Accepted
time: 1ms
memory: 3580kb
input:
1 928 3 74
output:
0.167600909
result:
ok found '0.1676009', expected '0.1676009', error '0.0000000'
Test #16:
score: 0
Accepted
time: 0ms
memory: 3612kb
input:
1 928 3 41
output:
0.212908856
result:
ok found '0.2129089', expected '0.2129089', error '0.0000000'
Test #17:
score: 0
Accepted
time: 1ms
memory: 3732kb
input:
1 928 1 12
output:
0.224009241
result:
ok found '0.2240092', expected '0.2240092', error '0.0000000'
Test #18:
score: 0
Accepted
time: 0ms
memory: 3576kb
input:
2 928 89 93
output:
0.989009694
result:
ok found '0.9890097', expected '0.9890097', error '0.0000000'
Test #19:
score: 0
Accepted
time: 0ms
memory: 3728kb
input:
7 928 51 72
output:
3.199010031
result:
ok found '3.1990100', expected '3.1990099', error '0.0000000'
Test #20:
score: 0
Accepted
time: 0ms
memory: 3604kb
input:
722 547 709 752
output:
355.686414483
result:
ok found '355.6864145', expected '355.6863918', error '0.0000001'
Test #21:
score: 0
Accepted
time: 0ms
memory: 3688kb
input:
242 742 518 920
output:
103.742903101
result:
ok found '103.7429031', expected '103.7429035', error '0.0000000'
Test #22:
score: 0
Accepted
time: 0ms
memory: 3688kb
input:
873 701 43 201
output:
276.087558556
result:
ok found '276.0875586', expected '276.0875558', error '0.0000000'
Test #23:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
268 228 527 562
output:
131.846104308
result:
ok found '131.8461043', expected '131.8460919', error '0.0000001'
Test #24:
score: 0
Accepted
time: 1ms
memory: 3732kb
input:
312 558 341 839
output:
121.468384742
result:
ok found '121.4683847', expected '121.4683851', error '0.0000000'
Test #25:
score: 0
Accepted
time: 0ms
memory: 3804kb
input:
274 85 178 364
output:
112.756492100
result:
ok found '112.7564921', expected '112.7564907', error '0.0000000'
Test #26:
score: 0
Accepted
time: 0ms
memory: 3728kb
input:
641 539 341 977
output:
238.054438786
result:
ok found '238.0544388', expected '238.0544387', error '0.0000000'
Test #27:
score: 0
Accepted
time: 0ms
memory: 3852kb
input:
245 861 438 872
output:
101.618384659
result:
ok found '101.6183847', expected '101.6183839', error '0.0000000'
Test #28:
score: 0
Accepted
time: 1ms
memory: 3604kb
input:
640 181 156 606
output:
215.419834645
result:
ok found '215.4198346', expected '215.4198349', error '0.0000000'