QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#655953 | #5170. 加速度 | Butanlishi | 20 | 2ms | 8096kb | C++14 | 1.2kb | 2024-10-19 10:30:55 | 2024-10-19 10:30:56 |
Judging History
answer
#include<bits/stdc++.h>
#define ld long double
#define ci const int
#define ll long long
#define fo(i,l,r) for(int i=(l);i<=(r);++i)
#define fu(i,l,r) for(int i=(l);i<(r);++i)
#define fd(i,l,r) for(int i=(l);i>=(r);--i)
#define P(x) __builtin_popcount(x)
#define gcd(x,y) __gcd(x,y)
using namespace std;
ci mod=1e9+7,N=1e6+5;
const ld eps=1e-9;
mt19937 rad(chrono::steady_clock::now().time_since_epoch().count());
inline ll read(){ll u=0,f=1;char o;while((o=getchar())<48||o>57)if(o=='-')f=-1;u=(o^48);while((o=getchar())>=48&&o<=57)u=(u<<1)+(u<<3)+(o^48);return u*f;}
void write(ll x){if(x<0)putchar('-'),x=-x;if(x>9)write(x/10);putchar(x%10+48);}
bool ST;
ll n,s[N];
ld a,len,v,t,L[N],R[N];
ld check(ld v)
{
return (-v+sqrt(v*v+2*a*len))/a;
}
bool ED;
signed main()
{//cerr<<(&ST-&ED)/1048576.0<<'\n';
// freopen("1.in","r",stdin);
// freopen("1.out","w",stdout);
// freopen("accel.in","r",stdin);
// freopen("accel.out","w",stdout);
n=read();a=read();
fo(i,1,n+1)
{
s[i]=read();
}
fo(i,1,n+1)
{
L[i]=read(),R[i]=read();
}
ld t=0;
fo(i,2,n+1)
{
len=s[i];
t=max(t,L[i]-check(0));
}
printf("%.10Lf",t+check(0)),cout<<'\n';
}
詳細信息
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 7952kb
input:
4 2 0 2 8 10 12 0 1000000000 2 2 4 4 6 7 6 1000000000
output:
6.3018239550
result:
wrong answer 1st numbers differ - expected: '6.58579', found: '6.30182', error = '0.04312'
Subtask #2:
score: 20
Accepted
Test #7:
score: 20
Accepted
time: 0ms
memory: 7944kb
input:
3 20 0 4632 5697 8786 0 1000000000 1 1000000000 1 1000000000 1 1000000000
output:
29.6411875606
result:
ok found '29.64119', expected '29.64119', error '0.00000'
Test #8:
score: 20
Accepted
time: 2ms
memory: 8096kb
input:
5000 100 0 26 289 325 425 558 844 885 1020 1186 1385 1398 1414 1444 1470 1914 1932 1956 2127 2194 2316 2339 2419 2521 2567 2647 2655 2804 3016 3053 3102 3240 3294 3491 3540 3591 3642 3680 3763 3804 3865 3955 3997 4048 4053 4100 4212 4222 4238 4302 4354 4358 4532 4534 4547 4550 4551 4695 4761 4762 48...
output:
100.2777897389
result:
ok found '100.27779', expected '100.27779', error '0.00000'
Test #9:
score: 20
Accepted
time: 1ms
memory: 8020kb
input:
3 300 0 44 217 225 0 1000000000 1 1000000000 1 1000000000 1 1000000000
output:
1.6831423111
result:
ok found '1.68314', expected '1.68314', error '0.00000'
Test #10:
score: 20
Accepted
time: 1ms
memory: 8024kb
input:
3 300 0 211 253 273 0 1000000000 1 1000000000 1 1000000000 1 1000000000
output:
1.3490737563
result:
ok found '1.34907', expected '1.34907', error '0.00000'
Test #11:
score: 20
Accepted
time: 0ms
memory: 7968kb
input:
3 2 0 7 21 26 0 1000000000 1 1000000000 1 1000000000 1 1000000000
output:
5.0990195136
result:
ok found '5.09902', expected '5.09902', error '0.00000'
Test #12:
score: 20
Accepted
time: 1ms
memory: 8032kb
input:
300 300 0 5 26 46 67 75 77 94 103 104 115 116 120 152 156 174 184 203 212 227 248 259 269 278 279 280 300 305 319 320 328 332 357 360 360 372 380 390 404 409 409 420 441 455 464 467 467 503 511 536 553 568 575 597 602 607 622 626 632 637 645 672 673 674 680 681 688 700 705 707 710 710 730 748 753 75...
output:
5.2888163510
result:
ok found '5.28882', expected '5.28882', error '0.00000'
Test #13:
score: 20
Accepted
time: 2ms
memory: 7952kb
input:
5000 100 0 12 33 57 92 94 120 157 208 220 222 236 236 237 238 247 259 317 323 358 361 365 383 396 431 441 498 506 517 542 542 544 545 571 590 598 626 630 639 639 668 670 674 684 693 693 694 748 753 760 760 767 785 793 798 805 820 851 852 852 867 897 916 942 945 963 969 980 986 994 1010 1014 1019 102...
output:
32.1290836922
result:
ok found '32.12908', expected '32.12908', error '0.00000'
Test #14:
score: 20
Accepted
time: 2ms
memory: 7960kb
input:
5000 2 0 96 121 212 282 332 358 388 393 464 586 666 972 998 1056 1116 1117 1313 1335 1514 1538 1573 1634 1769 1816 1819 1843 1877 1881 1901 2136 2234 2248 2355 2457 2467 2559 2676 2713 3063 3137 3232 3308 3327 3334 3373 3397 3471 3634 3720 3932 3946 3959 4032 4113 4275 4491 4792 4845 4934 4987 5032 ...
output:
707.0183873139
result:
ok found '707.01839', expected '707.01839', error '0.00000'
Test #15:
score: 20
Accepted
time: 1ms
memory: 7944kb
input:
3 2 0 7 11 22 0 1000000000 1 1000000000 1 1000000000 1 1000000000
output:
4.6904157598
result:
ok found '4.69042', expected '4.69042', error '0.00000'
Test #16:
score: 20
Accepted
time: 0ms
memory: 7952kb
input:
300 300 0 3 10 13 28 37 62 69 89 91 98 100 136 154 159 161 161 165 178 212 225 228 241 246 253 257 267 288 293 302 303 307 320 325 327 340 345 359 363 372 382 389 394 395 401 404 408 418 447 453 458 465 466 467 468 484 485 488 495 503 506 516 563 567 570 575 578 585 586 587 599 607 612 624 628 637 6...
output:
5.3284779715
result:
ok found '5.32848', expected '5.32848', error '0.00000'
Subtask #3:
score: 0
Skipped
Dependency #1:
0%
Subtask #4:
score: 0
Skipped
Dependency #1:
0%