QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#515096 | #4880. Network Transfer | uuku | AC ✓ | 142ms | 15544kb | C++14 | 4.6kb | 2024-08-11 15:10:26 | 2024-08-11 15:10:26 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
namespace ModInt{
template <uint32_t mod>
struct mint
{
#define i32 int32_t
#define u32 uint32_t
#define u64 uint64_t
static constexpr u32 get_r(){u32 ret=mod;for(i32 i=0;i<4;++i)ret*=2-mod*ret;return ret;}
static constexpr u32 r=get_r();
static const u32 n2=-u64(mod)%mod;
static const u32 mod2=mod<<1;
u32 a;
constexpr mint():a(0){}
constexpr mint(const int64_t &b):a(reduce(u64(b%mod+mod)*n2)){};
static constexpr u32 reduce(const u64 &b){return (b+u64(u32(b)*u32(-r))*mod)>>32;}
const mint &operator+=(const mint &b){if(i32(a+=b.a-mod2)<0)a+=mod2;return *this;}
const mint &operator-=(const mint &b){if(i32(a-=b.a)<0)a+=mod2;return *this;}
const mint &operator*=(const mint &b){a=reduce(u64(a)*b.a);return *this;}
const mint &operator/=(const mint &b){*this*=b.inverse();return *this;}
const mint operator+(const mint &b)const{return mint(*this)+=b;}
const mint operator-(const mint &b)const{return mint(*this)-=b;}
const mint operator*(const mint &b)const{return mint(*this)*=b;}
const mint operator/(const mint &b)const{return mint(*this)/=b;}
const bool operator==(const mint &b)const{return(a>=mod?a-mod:a)==(b.a>=mod?b.a-mod:b.a);}
const bool operator!=(const mint &b)const{return(a>=mod?a-mod:a)!=(b.a>=mod?b.a-mod:b.a);}
const mint operator-()const{return mint()-mint(*this);}
const mint ksm(u64 n)const{mint ret(1);for(mint mul(*this);n;n>>=1,mul*=mul)if(n&1)ret*=mul;return ret;}
const mint inverse()const{return ksm(mod-2);}
friend ostream &operator<<(ostream &os, const mint &b){return os<<b.get();}
friend istream &operator>>(istream &is, mint &b){int64_t t;is>>t;b=mint(t);return(is);}
const u32 get()const{u32 ret=reduce(a);return ret>=mod?ret-mod:ret;}
static const u32 get_mod(){return mod;}
};
}
using namespace ModInt;
namespace FAST_IO{
#define ll long long
#define ull unsigned long long
#define db double
#define _8 __int128_t
#define Get() (BUF[Pin++])
const int LEN=1<<20;
char BUF[LEN];
int Pin=LEN;
inline void flushin(){memcpy(BUF,BUF+Pin,LEN-Pin),fread(BUF+LEN-Pin,1,Pin,stdin),Pin=0;return;}
inline char Getc(){return (Pin==LEN?(fread(BUF,1,LEN,stdin),Pin=0):0),BUF[Pin++];}
template<typename tp>inline tp read(){(Pin+40>=LEN)?flushin():void();tp res=0;char f=1,ch=' ';for(;ch<'0'||ch>'9';ch=Get())if(ch=='-')f=-1;for(;ch>='0'&&ch<='9';ch=Get())res=(res<<3)+(res<<1)+ch-48;return res*f;}
template<typename tp>inline void read(tp &n){(Pin+40>=LEN)?flushin():void();tp res=0;char f=1,ch=' ';for(;ch<'0'||ch>'9';ch=Get())if(ch=='-')f=-1;for(;ch>='0'&&ch<='9';ch=Get())res=(res<<3)+(res<<1)+ch-48;n=res*f;return;}
inline int readstr(char *s){int len=0;char ch=Getc();while(!isalnum(ch))ch=Getc();while(isalnum(ch))s[len++]=ch,ch=Getc();return len;}
#define Put(x) (PUF[Pout++]=x)
char PUF[LEN];
int Pout;
inline void flushout(){fwrite(PUF,1,Pout,stdout),Pout=0;return;}
inline void Putc(char x){if(Pout==LEN)flushout(),Pout=0;PUF[Pout++]=x;}
template<typename tp>inline void write(tp a,char b='\n'){static int stk[40],top;(Pout+50>=LEN)?flushout():void();if(a<0)Put('-'),a=-a;else if(a==0)Put('0');for(top=0;a;a/=10)stk[++top]=a%10;for(;top;--top)Put(stk[top]^48);Put(b);return;}
inline void wt_str(string s){for(char i:s)Putc(i);return;}
}
using namespace FAST_IO;
#define pii pair<int,int>
#define fi first
#define se second
#define ls (rt<<1)
#define rs (rt<<1|1)
#define Ls (tr[rt].lc)
#define Rs (tr[rt].rc)
const int N=2e5+10;
int n,w;
struct File{
int t,s,p,id;
}file[N];
bool cmp(File a,File b)
{
return a.t<b.t;
}
double tot_tran,last_time,sum_p;
priority_queue<pair<double,int>>q;
double ans[N];
int main()
{
read(n),read(w);
for(int i=1,t,s,p;i<=n;i++)
{
read(t),read(s),read(p);
file[i]={t,s,p,i};
}
sort(file+1,file+n+1,cmp);
for(int i=1;i<=n;i++)
{
while(!q.empty())
{
if((-q.top().fi-tot_tran)*sum_p/w<file[i].t-last_time)
{
int now=q.top().se;
ans[file[now].id]=(-q.top().fi-tot_tran)*sum_p/w+last_time;
tot_tran+=(-q.top().fi-tot_tran);
sum_p-=file[now].p;
last_time=ans[file[now].id];
q.pop();
}
else break;
}
if(!q.empty())tot_tran+=(file[i].t-last_time)*w/sum_p;
q.push({-(tot_tran+1.*file[i].s/file[i].p),i});
last_time=file[i].t;
sum_p+=file[i].p;
}
while(!q.empty())
{
int now=q.top().se;
ans[file[now].id]=(-q.top().fi-tot_tran)*sum_p/w+last_time;
tot_tran+=(-q.top().fi-tot_tran);
sum_p-=file[now].p;
last_time=ans[file[now].id];
q.pop();
}
for(int i=1;i<=n;i++)
printf("%.6lf\n",ans[i]);
flushout();
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 7908kb
input:
2 10 0 100 2 4 200 1
output:
13.000000 30.000000
result:
ok 2 numbers
Test #2:
score: 0
Accepted
time: 1ms
memory: 8000kb
input:
2 10 30 200 1 10 100 2
output:
50.000000 20.000000
result:
ok 2 numbers
Test #3:
score: 0
Accepted
time: 1ms
memory: 7896kb
input:
1 10000000 0 1 42
output:
0.000000
result:
ok found '0.0000000', expected '0.0000001', error '0.0000001'
Test #4:
score: 0
Accepted
time: 1ms
memory: 7984kb
input:
1 10000000 42 1 42
output:
42.000000
result:
ok found '42.0000000', expected '42.0000001', error '0.0000000'
Test #5:
score: 0
Accepted
time: 1ms
memory: 5860kb
input:
1 10000000 42 10000000 42
output:
43.000000
result:
ok found '43.0000000', expected '43.0000000', error '0.0000000'
Test #6:
score: 0
Accepted
time: 1ms
memory: 7960kb
input:
1 10000000 10000000 1 1
output:
10000000.000000
result:
ok found '10000000.0000000', expected '10000000.0000001', error '0.0000000'
Test #7:
score: 0
Accepted
time: 0ms
memory: 5932kb
input:
1 10000000 1 1 100
output:
1.000000
result:
ok found '1.0000000', expected '1.0000001', error '0.0000001'
Test #8:
score: 0
Accepted
time: 0ms
memory: 7904kb
input:
1 1 10000000 10000000 100
output:
20000000.000000
result:
ok found '20000000.0000000', expected '20000000.0000000', error '0.0000000'
Test #9:
score: 0
Accepted
time: 87ms
memory: 13208kb
input:
200000 1 10000000 10000000 1 10000000 10000000 1 10000000 10000000 1 10000000 10000000 1 10000000 10000000 1 10000000 10000000 1 10000000 10000000 1 10000000 10000000 1 10000000 10000000 1 10000000 10000000 1 10000000 10000000 1 10000000 10000000 1 10000000 10000000 1 10000000 10000000 1 10000000 10...
output:
2000010000000.000000 2000010000000.000000 2000010000000.000000 2000010000000.000000 2000010000000.000000 2000010000000.000000 2000010000000.000000 2000010000000.000000 2000010000000.000000 2000010000000.000000 2000010000000.000000 2000010000000.000000 2000010000000.000000 2000010000000.000000 200001...
result:
ok 200000 numbers
Test #10:
score: 0
Accepted
time: 120ms
memory: 14044kb
input:
200000 1 10000000 10000000 22 10000000 10000000 62 10000000 10000000 71 10000000 10000000 73 10000000 10000000 82 10000000 10000000 15 10000000 10000000 60 10000000 10000000 26 10000000 10000000 35 10000000 10000000 83 10000000 10000000 58 10000000 10000000 84 10000000 10000000 23 10000000 10000000 ...
output:
1790041363636.364258 1390577580645.161377 1300784647887.324219 1280812465753.425049 1190840487804.878418 1859583333333.333984 1410498166666.666748 1750241923076.923828 1660420857142.857910 1180833975903.614746 1430416379310.344971 1170834642857.143066 1780072608695.652832 1610417250000.000488 125084...
result:
ok 200000 numbers
Test #11:
score: 0
Accepted
time: 125ms
memory: 14592kb
input:
199293 5 9504657 9159218 4 9229606 9939393 93 9949326 9400061 74 9049202 9678955 63 9856746 9805686 100 9900514 9492706 58 9077984 9828311 42 9082259 9783365 78 9815702 9654015 95 9655893 9753916 11 9027905 9930425 9 9210664 9496857 85 9488366 9132506 56 9416678 9238290 2 9475297 9343399 28 9442121 ...
output:
372606864555.120483 212211534775.655243 238948149663.040985 263425611185.354431 197063144013.496216 270580494646.032806 303467045798.255005 237141228118.925415 203504180187.052643 360171498662.943115 364170179095.571228 219530866865.629730 270186214835.578979 376567304898.907837 326396146375.992981 ...
result:
ok 199293 numbers
Test #12:
score: 0
Accepted
time: 129ms
memory: 14220kb
input:
199775 5 9573917 9665464 57 9498813 9469832 81 9885957 9606395 14 9397765 9003071 9 9246019 9070405 26 9740136 9081183 11 9893308 9667485 60 9912483 9414387 94 9934996 9683245 7 9359993 9793294 90 9852046 9209808 22 9704268 9048813 52 9066664 9842295 49 9894656 9914370 56 9520915 9685732 36 9507809 ...
output:
275136188681.624573 227063705577.188507 355194309827.041809 363385338618.774170 329856159627.169312 359600267866.418335 269538859112.946503 201263971424.147919 368365549271.440613 215596647879.436890 338462086635.514771 277864582191.778931 291752383805.085266 279643237081.528809 314523554485.678528 ...
result:
ok 199775 numbers
Test #13:
score: 0
Accepted
time: 132ms
memory: 14008kb
input:
199876 10 9569180 9097026 11 9805018 9888590 69 9859588 9812730 54 9708644 9290190 38 9672977 9335125 45 9617443 9706660 56 9670948 9431976 69 9705708 9008410 2 9091288 9600793 23 9064094 9794988 56 9750869 9563190 30 9234184 9600771 22 9681961 9478086 50 9410316 9590449 15 9604218 9991066 51 957349...
output:
179887507879.354340 127724903099.116348 141024141836.350891 153787858998.034454 147195733048.117279 138618997279.591553 124676275642.349121 188810825750.265320 169163511122.132904 139088289036.244293 162417585447.202271 170108072542.117737 143081618014.832428 176681729512.216858 144626707369.681000 ...
result:
ok 199876 numbers
Test #14:
score: 0
Accepted
time: 139ms
memory: 13100kb
input:
199977 4 9602127 9565587 73 9111223 9419029 57 9833218 9019063 97 9020206 9577308 79 9062250 9637529 67 9457065 9295138 1 9448587 9234150 78 9535931 9639433 15 9247581 9592339 40 9768195 9797367 34 9649692 9879574 35 9727787 9190412 97 9260259 9150191 43 9851295 9229529 69 9724520 9333397 67 9676184...
output:
304491753262.737915 340031067721.016052 234313922207.067017 290561445183.445129 319806025765.538574 474840344781.455688 286089986044.731079 441518236521.829529 382411279202.554993 398221219099.150940 396587568673.439575 238678764660.485596 370475863738.502319 307996730448.382263 314703553472.787720 ...
result:
ok 199977 numbers
Test #15:
score: 0
Accepted
time: 125ms
memory: 13128kb
input:
199077 6 9634388 9960151 22 9418114 9874787 41 9769850 9225397 37 9368769 9901425 8 9489208 9902249 82 9371370 9920615 49 9263226 9036325 88 9329155 9233456 23 9366876 9584570 56 9434611 9799061 9 9473832 9195956 44 9220704 9779369 72 9801558 9822981 43 9366955 9830926 27 9770139 9638731 78 9741872 ...
output:
283688147387.334839 254552170732.087372 256675980123.553894 304680729443.035950 192633843521.357605 242706661004.992920 170818527368.701874 279445737169.919678 229155389462.984680 303032608931.144714 245028698316.449219 206387719766.667664 251159922565.220428 275605305983.792969 195456302719.262756 ...
result:
ok 199077 numbers
Test #16:
score: 0
Accepted
time: 85ms
memory: 10620kb
input:
199174 94 4939842 606 76 1166421 867 100 9051103 784 55 8172658 675 51 3743680 551 61 2613139 796 25 6619357 995 81 4244151 919 13 1565998 618 89 8971567 956 48 4453079 696 6 6507538 985 84 821657 762 98 5429287 786 27 6562208 661 86 286640 615 36 6512669 689 74 219589 615 49 8412173 719 58 8817089 ...
output:
4939848.446809 1166430.223404 9051111.340426 8172665.180851 3743685.861702 2613147.468085 6619367.585106 4244160.776596 1566004.574468 8971577.170213 4453091.606383 6507551.149949 821665.106383 5429295.393617 6562215.031915 286647.393617 6512680.579212 219602.085106 8412180.648936 8817102.836979 687...
result:
ok 199174 numbers
Test #17:
score: 0
Accepted
time: 89ms
memory: 10480kb
input:
199275 58 420812 937 34 5358924 565 84 341963 608 95 9557118 546 80 3131446 587 87 4631085 759 74 1944615 555 90 9739783 504 22 6129096 823 9 9113009 779 15 5896446 737 11 2838089 778 63 2887413 545 3 9842144 566 82 4824038 515 2 3489410 943 99 4094375 674 67 5967153 825 83 8442695 661 5 1099067 961...
output:
420828.155172 5358933.741379 341973.703448 9557130.934039 3131456.120690 4631098.086207 1944624.568966 9739791.689655 6129110.737548 9113022.431034 5896464.603448 2838116.856189 2887427.413793 9842153.758621 4824046.879310 3489426.258621 4094386.620690 5967167.224138 8442706.396552 1099083.568966 11...
result:
ok 199275 numbers
Test #18:
score: 0
Accepted
time: 85ms
memory: 10112kb
input:
199757 100 8599274 773 87 2248916 983 76 6665957 948 34 8244088 933 17 4788589 623 6 4017807 722 19 4934229 616 11 202280 590 38 692193 527 18 9188184 884 97 2306679 771 19 9102374 572 34 2551259 547 96 6886224 621 32 3085867 871 17 6758447 763 57 1742348 667 52 4050359 520 18 808859 610 60 8347912 ...
output:
8599282.527126 2248929.218553 6665969.220000 8244097.330000 4788595.230000 4017814.220000 4934235.160000 202285.900000 692198.270000 9188192.840000 2306686.710000 9102379.720000 2551264.499375 6886230.538125 3085875.710000 6758458.782632 1742354.670000 4050364.200000 808865.100000 8347917.090000 954...
result:
ok 199757 numbers
Test #19:
score: 0
Accepted
time: 111ms
memory: 14612kb
input:
199301 55 9625480 9580 55 1972191 9544 50 2023060 7409 51 3155002 5100 49 5157066 8962 57 8573320 9043 52 5593516 7630 69 4095980 7228 37 9700572 7655 95 4873927 6900 49 8970656 7567 35 4513218 7294 83 90439 8204 19 2350487 9774 100 8833379 7311 70 8720440 6645 16 5196961 9762 63 7589832 6318 17 504...
output:
22664764.177571 19072434.527592 14847167.731285 13479463.302481 20842918.892619 22479839.009496 18374375.954988 21677924.352305 18966017.791128 19820640.700593 23346119.181342 14514855.723575 20704922.934124 9826141.159487 20068809.871948 25071221.677623 20766430.720361 24773065.819994 14630499.1178...
result:
ok 199301 numbers
Test #20:
score: 0
Accepted
time: 129ms
memory: 14244kb
input:
199784 70 5106450 7012 8 8862184 6409 38 3313920 6644 90 1841972 6860 90 9511699 8604 83 5624399 9771 93 3616263 6180 86 6894122 9030 49 4263669 9105 11 4949103 5598 32 5380890 6955 48 8146280 6286 53 7123063 6952 11 9394568 8476 55 4759565 6568 78 6956343 7496 74 7811801 9766 52 5673038 8211 55 507...
output:
20569989.793816 17924700.661386 6678833.936282 3781477.143651 16565452.197707 13829173.091951 7161775.574899 17739360.846300 20493408.062243 16664943.177233 15857800.208163 16526407.093700 20285025.598995 17776581.957404 10634690.714596 15012054.600689 18022459.275168 16268971.798119 19323876.128212...
result:
ok 199784 numbers
Test #21:
score: 0
Accepted
time: 125ms
memory: 11276kb
input:
199504 87 3284911 7920 70 8087820 7643 26 4604781 8931 34 5562076 8619 20 6201975 6720 98 9977988 8972 46 6605878 7152 95 2389753 7357 65 8826767 9661 24 5090545 8402 2 1791123 7868 49 9443698 5279 28 4155685 8121 8 3807424 7178 9 3021395 9299 93 225379 7716 41 5459773 5824 41 1420601 8155 89 744193...
output:
6416886.862673 15527062.057001 14488552.389330 15826799.688592 9289865.233564 15136631.655241 10288299.833082 4661712.471313 15976522.943954 17111357.541166 4630547.059029 15007084.359221 16615825.317782 16415542.482728 5457325.143729 684855.404641 12062718.459714 2452961.154312 13536764.408201 7795...
result:
ok 199504 numbers
Test #22:
score: 0
Accepted
time: 124ms
memory: 13164kb
input:
199447 66 1042403 67371 93 1128688 78245 76 5016768 50046 51 8688565 60236 62 7728578 73421 61 4914558 84844 51 4044583 90549 45 4037722 73419 85 533462 83816 56 832748 81898 38 2603184 60202 97 7543832 99993 32 8706211 91645 79 5544589 91922 58 8719389 94288 83 9443633 51194 58 710110 98781 29 9077...
output:
97353589.262379 134963509.310391 139517888.212162 141786058.523868 157334920.171921 175394851.272495 184140886.526918 126378138.861685 163471348.715230 184991893.117477 90962705.056614 200054135.804035 155247504.722038 173087974.443247 153779101.543327 134152145.318263 201126873.603300 146215731.164...
result:
ok 199447 numbers
Test #23:
score: 0
Accepted
time: 130ms
memory: 14012kb
input:
199929 82 9220865 86552 59 2985547 66016 60 1340761 51929 90 7375534 79510 99 4418854 68267 87 6932503 96935 100 7034197 65152 55 9533354 87179 1 5096560 88788 73 974191 95082 21 6677774 96696 10 1176893 73873 11 5738833 74842 80 9957447 62211 17 4645574 77470 94 7679536 61562 25 3324950 83656 14 98...
output:
137442730.623499 117719935.423033 60788949.550703 100808309.623684 95137085.224428 113655203.673634 125979076.426214 182717780.304844 126235560.611784 167628018.398799 176362017.876934 172963004.019427 110101567.382918 164701871.194251 99290091.136316 155451189.610924 171789653.370505 163509659.6692...
result:
ok 199929 numbers
Test #24:
score: 0
Accepted
time: 132ms
memory: 14772kb
input:
199029 73 4701835 79195 8 2211183 66584 48 2631622 53813 30 8759994 85987 36 8773487 81715 6 6319225 90424 41 23811 53497 64 2331496 50938 10 9659659 75158 89 6082500 89664 91 8121141 51790 18 2474312 52613 82 2771456 90383 69 7001526 77641 71 2907404 97855 14 948572 53328 84 3604146 68532 7 2907887...
output:
197343781.133926 146266455.203147 160277245.026009 172793852.192167 199572245.445598 169801859.050699 64949674.506407 189590139.181983 118032789.573732 127144382.914736 178153214.122073 83736576.602195 143463781.904462 135320085.159299 193921930.410480 73566489.372401 197237455.989794 146316945.4691...
result:
ok 199029 numbers
Test #25:
score: 0
Accepted
time: 127ms
memory: 14288kb
input:
199673 56 2610387 845669 2 1687829 988340 72 3821139 870884 35 2813428 799092 7 1365018 803557 95 9357496 513441 25 731413 980028 93 8363930 565303 23 4733785 973636 18 167256 773886 29 51133 651716 90 3480326 674090 12 4953792 831943 51 4343808 520658 51 2719391 642184 85 3121609 691825 39 7026995 ...
output:
2663416920.979112 1928512891.465456 2270470176.705098 2597243918.163392 1455194752.908856 2183638273.066731 1692789012.785376 2266073869.022475 2496007785.562657 2296006666.683374 1246768433.833331 2503127235.852670 2051884673.886417 1670260383.252947 1329974873.907362 2102267234.928849 2228182778.4...
result:
ok 199673 numbers
Test #26:
score: 0
Accepted
time: 130ms
memory: 13988kb
input:
199393 73 8091358 636821 63 3610955 902862 64 5111999 556237 78 6533532 853174 48 686517 962833 17 8744218 893633 70 3721028 529352 98 1162071 874456 32 9296883 502388 30 308699 714994 100 4191990 607788 3 4777744 786151 83 6953281 811671 52 8756665 654068 97 981220 909737 97 6324379 990946 6 730619...
output:
1275130082.972556 1493550552.930899 973568760.578959 1610876608.734144 1917650576.822049 1437555485.982570 745082252.339794 1766089887.567426 1584227879.321423 951064194.587347 2018503334.660641 1219497961.209473 1549263972.680351 930468945.024260 1200936817.501114 2009863971.578051 1971316327.94318...
result:
ok 199393 numbers
Test #27:
score: 0
Accepted
time: 131ms
memory: 13108kb
input:
199875 63 6269819 886681 17 5467813 721870 48 6402860 741591 18 253634 907256 77 2409927 663402 32 762162 815118 11 1743775 756777 7 6657703 601020 44 3859980 976923 47 5417008 792908 74 602223 509641 4 8410806 856919 62 9019038 832694 49 833878 650671 51 9243051 594701 8 9593416 844285 65 9921030 9...
output:
2213856003.125701 1775683281.444499 2166436262.259887 1593306697.442323 1943159460.190110 2266283494.042459 2305962466.386982 1714438971.510802 1944956047.588432 1528248633.053412 2319079253.772492 1723020248.555435 1847280158.088943 1659435553.774293 2266943720.699834 1680889406.721025 2380433868.5...
result:
ok 199875 numbers
Test #28:
score: 0
Accepted
time: 138ms
memory: 14192kb
input:
199493 80 3646291 6589211 78 3835801 9820358 84 3775894 7887279 69 1403559 7547266 40 2451237 5385669 29 2904241 6950241 65 6125738 7100303 30 3526246 6344762 98 844701 9815023 18 5933784 5196196 40 8335782 9624783 43 5474890 5645503 81 4386861 6220368 39 1603653 7528687 13 6625714 6639631 16 706689...
output:
10214158002.177265 12572146296.169798 12430331164.929605 14939287831.836447 14878605249.441740 11989023568.211344 15721325037.909615 8103362035.450862 17454389308.558998 13196271301.769997 15545715392.325424 8679035263.779688 14234787112.388754 17532010551.864792 17037539089.802351 14606370108.12635...
result:
ok 199493 numbers
Test #29:
score: 0
Accepted
time: 136ms
memory: 15544kb
input:
199975 95 9127263 9824246 31 725793 7569723 72 5066755 8332179 9 5123663 8233302 69 4108380 6510726 43 2290963 9771814 6 4148486 9985610 39 3988744 5840025 14 5407800 5718449 27 6075227 5087718 10 9779149 9069107 56 9107953 7713115 56 1419484 6026900 32 6016510 8831954 72 4887544 9655430 27 269667 9...
output:
13937905496.845871 10033778296.324604 15207689460.111092 10738075363.253736 11827209682.294918 15492533171.576155 13480084569.657469 14400171178.176458 12982354715.381676 14665395594.544113 12092824838.966072 11426666478.288130 12620203552.038391 10878713148.305513 14156248631.632805 9771890664.5275...
result:
ok 199975 numbers
Test #30:
score: 0
Accepted
time: 133ms
memory: 13556kb
input:
199075 86 7305724 8126405 81 4918296 6090023 60 1390748 8810642 52 8843766 8148404 10 8463013 7635784 66 4308908 7593387 59 9473744 7133543 48 1820019 5301725 22 9970898 7292121 47 6216669 9208306 84 1222516 8546994 65 405370 9747164 27 8452108 5129623 33 8093724 5839029 26 813730 6967420 39 3538704...
output:
10721879434.658968 10797502325.457209 13464577925.986486 16627307131.112791 11616265493.267004 12203486352.281494 12909398946.928360 14651536819.868650 13101153739.143148 11291805629.255396 12310694615.643122 15583041967.504450 13108926037.785688 14447914933.619799 13669841962.998409 12037040467.097...
result:
ok 199075 numbers
Test #31:
score: 0
Accepted
time: 122ms
memory: 10912kb
input:
199199 78151 308067 3510866 94 6357726 1383805 15 2657317 8797531 92 6497312 357768 66 1134727 3432114 28 7985088 8000696 13 147819 1655876 32 4881979 1216259 97 1470964 2232766 25 2929789 5183878 21 4171107 4419118 92 7436038 8910406 32 8680822 8565979 100 5307897 8959910 28 4773869 4268007 57 1347...
output:
335924.968890 7945776.923775 3336558.055896 6583286.328134 1513151.759331 12296920.318201 166073.393624 5030871.173334 1820619.976672 5288502.809738 4678750.757608 11701064.208291 10564865.515038 11024857.019183 5717138.807379 1556387.378367 6442303.980120 11739607.820637 9175051.948970 7480697.7661...
result:
ok 199199 numbers
Test #32:
score: 0
Accepted
time: 82ms
memory: 10236kb
input:
199681 594292 5789038 4364536 47 5583361 1412685 3 8981311 1101713 36 217414 8157858 7 5489360 880031 50 7371810 1431418 58 8170568 1612166 41 377610 8562820 5 1000928 2657627 33 8038099 2960000 100 8245697 1329846 4 3766590 9777839 7 5713444 6131898 5 7385110 6125691 82 3035698 5829090 65 4616843 3...
output:
5789045.344093 5583389.058767 8981312.853824 217440.360182 5489361.480806 7371812.408611 8170570.712751 377624.408439 1000932.471921 8038106.819725 8245699.237698 3766606.452920 5713454.317988 7385125.879677 3035707.808461 4616848.238048 8423434.943230 5589200.849387 9116995.485213 1829707.141032 57...
result:
ok 199681 numbers
Test #33:
score: 0
Accepted
time: 91ms
memory: 10540kb
input:
199782 951648 8934366 5026718 9 7440220 1184668 91 272171 3405895 75 6568741 990652 36 2179636 8327948 65 9389755 4862140 7 1160181 6727240 51 840108 5909381 21 597159 8049784 53 8179541 5446522 70 4655931 8305983 17 2366518 645273 81 7779201 3889305 97 6764834 8067280 41 1297528 2614366 76 7885880 ...
output:
8934371.282119 7440221.244859 272174.578944 6568742.040986 2179644.751080 9389760.109179 1160188.069042 840114.898410 597167.458783 8179546.723253 4655942.072754 2366518.678058 7779206.976507 6764842.477168 1297530.747199 7885881.625235 6005127.565446 3672394.944492 4114388.905825 9078544.470465 120...
result:
ok 199782 numbers
Test #34:
score: 0
Accepted
time: 127ms
memory: 14572kb
input:
199013 2 5648444 6390891 30 4583777 4765203 91 6002297 9967339 67 2920106 5046393 16 1078536 9551957 15 4208514 8778670 95 6524454 7530040 44 5903729 8501282 33 3694577 8408932 62 771162 6157066 4 9717159 3022531 97 8386385 467293 82 5854615 1902200 68 1266157 8997519 45 2513227 4669366 78 8418928 5...
output:
422330846579.006958 217302476200.054504 388908111736.459900 447421455718.813782 473670311290.807251 321064635269.455383 403413314451.741943 435703578221.717041 378175228790.526306 488886966001.821899 140471687707.958557 28129828435.560352 127607157606.546204 417283372283.311157 240842409817.678894 4...
result:
ok 199013 numbers
Test #35:
score: 0
Accepted
time: 142ms
memory: 15336kb
input:
199114 46 6162548 7053073 83 6440636 9761378 79 7293157 2271521 6 4304566 2846483 49 2735679 1967170 41 6226459 2209392 48 1849712 7677818 53 6366227 815139 41 593319 8833793 82 912605 3676292 74 6127392 4965964 98 4716936 6302023 45 2887238 4626902 61 5679015 5971812 3 8439414 6230450 94 6654831 42...
output:
13270785737.092686 15888659942.513632 19830440328.543484 10219121022.593576 8794729532.680622 8508652523.297283 16746925846.283197 4058690357.133713 15023451061.332195 9036976049.470293 9193518426.711422 16576759694.159151 12350448518.211235 21371543825.422173 11263961776.654760 8266223188.266890 14...
result:
ok 199114 numbers
Test #36:
score: 0
Accepted
time: 134ms
memory: 13760kb
input:
199596 87 9307876 2682550 45 5666271 9533362 67 3617151 4575704 58 8024669 5679277 86 7090312 4447791 60 5613182 5640114 89 4839326 2601404 63 4197502 3128996 49 123283 4291358 90 8718404 6419710 49 5235115 1942100 11 3316864 2136753 20 9919861 7417013 58 5058738 3137593 50 6701243 2758829 1 9923868...
output:
5524614624.603999 8842445165.143280 6717217887.153008 5954728955.372917 6451381042.313221 5777733893.785855 4118838152.138134 5808315903.487162 4612176056.152823 8610704084.936039 9364167101.827066 7944757485.171012 8539108645.909131 5735633416.110470 11378771214.316223 4837540165.373261 953633964.0...
result:
ok 199596 numbers
Test #37:
score: 0
Accepted
time: 139ms
memory: 15200kb
input:
199697 39 4788847 3344732 94 2556263 4529537 55 4908011 1912590 98 6711639 8446664 20 3780588 1895708 82 2597993 9070836 41 7828941 7781885 80 4660000 475557 70 4686381 4907707 15 8859846 8906232 19 6678482 3885532 19 4614282 7971483 95 6952484 9950228 58 7135952 303374 4 4963073 4576809 17 495414 1...
output:
8080516207.396165 15379520637.741745 4704955625.285183 23724826976.623882 5498253763.458274 21858676687.876144 16920641339.398636 1714686622.739666 23125936060.854935 23927692271.576393 21539830987.969395 15560365236.117592 20731573992.094620 14592285657.332426 22555069203.118828 15571096717.903027 ...
result:
ok 199697 numbers
Test #38:
score: 0
Accepted
time: 136ms
memory: 14388kb
input:
199798 83 2967307 8974210 56 9446256 4301520 43 6198872 9184068 37 431742 1022562 61 8135221 4567817 97 1984715 7468854 82 5851688 2896959 89 155631 2789414 78 4216345 365272 23 3968155 6425459 94 3088715 861669 20 8247345 4063108 70 9018241 2740338 47 1548808 7277667 63 889259 6137892 24 8731318 36...
output:
9585283617.959991 8084038822.531152 10472903001.084949 1903914662.785163 4825951818.898457 7687860874.447990 3528421731.619712 3801412971.621735 1828843662.404849 6405828305.006438 4479058921.669219 5688131849.588049 5708000433.462890 8615588401.131273 10519349299.711468 61411050.133920 686981446.40...
result:
ok 199798 numbers
Test #39:
score: 0
Accepted
time: 3ms
memory: 7960kb
input:
1360 49 9871429 9779574 40 9989546 534733 28 3556340 8555939 45 2305081 5937120 29 5096830 6921998 49 7191025 9278305 8 1298498 9627142 14 671882 3049863 76 7402068 6967792 30 4959332 8268659 69 4691507 7797825 22 2723063 1478222 99 2602570 2927804 66 9779683 6186660 50 706855 189678 58 8926331 5264...
output:
123331351.307860 34603328.337054 117294057.853424 118724756.222695 109278783.858189 137076595.222914 134482946.239141 34527002.999289 122234510.150622 103418304.970579 128510981.489846 17110978.092679 51474075.045189 106097823.692130 1057524.689449 73357616.312588 135935222.171997 68134928.914851 11...
result:
ok 1360 numbers
Test #40:
score: 0
Accepted
time: 2ms
memory: 8088kb
input:
1842 93 5352399 376348 90 6879538 306716 20 9880335 860121 93 6025185 3737210 70 9451463 9594107 79 9208970 7676323 49 9321246 9774920 23 6167514 5363720 84 1965166 2616845 42 67641 5979374 47 6134874 4773961 31 9053615 7312952 74 9635193 5717915 63 1856896 8128249 5 8968685 1750762 73 2129100 39552...
output:
7987080.246971 20278894.587576 18320294.061011 47350535.199269 73982532.330523 79242940.079601 91559848.260601 53356053.090179 45696221.831925 61057205.352011 78364243.711649 68764097.524488 66605259.435127 97835462.209478 29811318.412371 51047928.078219 45401515.195059 84861071.090944 98257417.4217...
result:
ok 1842 numbers
Test #41:
score: 0
Accepted
time: 2ms
memory: 8028kb
input:
1562 34 8497727 1038529 44 8736396 5111403 4 1171194 3164303 36 9745289 6570004 3 6141739 7042024 94 3562558 1107045 97 4646504 4698505 36 8965656 7934473 92 1495130 3041706 58 5175950 3498600 17 209463 6717394 43 7653543 3147682 53 1700949 3475322 59 1236619 326734 63 4894871 3311845 81 5398137 238...
output:
56900292.500893 223642699.080262 139709814.644438 225822068.409826 132960879.399121 25062361.171213 172965317.483263 146396021.551932 94295992.186699 193221471.417159 177992215.180595 114510915.233796 104870587.917750 4380449.198042 83564411.801528 183113596.499792 30909569.122490 197264086.327840 1...
result:
ok 1562 numbers
Test #42:
score: 0
Accepted
time: 2ms
memory: 8080kb
input:
1043 86 1709320 1892199 5 2995165 5074875 96 2462055 5468486 76 6096614 4370095 41 496371 4489941 16 613636 9505064 42 7636118 4846283 46 4461287 248330 13 6058228 3466567 75 5317392 6050530 96 1652830 8660826 52 8950961 4015116 24 8733572 1041240 56 3313833 7492515 10 3156701 9905633 96 8667174 107...
output:
55728508.105634 24155440.341681 30021799.464732 43517016.262329 53263756.315418 51213710.915723 43989691.587028 12049581.587601 26940157.579823 32066791.277845 48039943.170490 50652583.125881 18099262.989191 58206179.482019 40418449.745619 15434825.033026 25997939.896035 10580800.007701 14710627.782...
result:
ok 1043 numbers
Test #43:
score: 0
Accepted
time: 2ms
memory: 5872kb
input:
1525 30 7190292 2554381 59 9885158 4846858 84 8786049 7772668 16 9816718 2170185 74 7186648 1937858 39 7664716 7968490 83 5658866 4994061 55 4923786 2562187 21 621325 4148323 87 5458834 8793948 66 3096197 604258 57 2584023 9849845 91 733061 8798647 57 7726690 9434104 64 1418530 6690908 4 1869943 473...
output:
99509524.659476 124746768.263116 238953615.193232 75827976.706799 110266382.422735 167850000.898466 161967658.505839 184761418.152152 87603266.893328 190877016.800509 24126960.882944 174123039.560946 196206527.541234 197568772.609293 252320975.472601 180161316.747452 52195835.571115 239545577.105232...
result:
ok 1525 numbers
Test #44:
score: 0
Accepted
time: 2ms
memory: 8000kb
input:
316 59 9188975 3868239 10 1555155 115859 26 5453579 247042 72 2822282 4185205 49 82066 6588164 75 5670503 7171636 83 9577189 1881903 17 7935150 4796220 33 4738599 2350579 56 417510 597470 97 647601 4861443 40 5843081 6719640 5 1819841 6829760 9 2504145 9651623 92 1334814 7014371 46 2616434 1788240 7...
output:
25295770.486411 1657034.380344 5846332.303283 14063725.194989 1173590.543655 18383473.728953 21350187.763547 22220128.504250 11031724.842690 502932.661607 5221978.625804 26841423.843671 26317074.274167 15961440.516044 16912327.180446 4295986.517308 24097114.849903 26034526.021503 5365487.787523 1467...
result:
ok 316 numbers
Test #45:
score: 0
Accepted
time: 1ms
memory: 7976kb
input:
139 8 9703080 4465013 64 3412014 9887842 14 6744440 2551224 12 9173609 1985295 87 4436699 4036081 94 24091 5569654 27 4902447 6805489 30 733291 2142781 49 9301697 7999632 69 558952 3340888 72 4722191 6613388 45 4443010 2554370 75 3885598 4587166 14 6917003 6817404 50 9596645 3608158 61 5885471 52546...
output:
49808572.782173 83536742.191011 71141235.252602 26003670.699445 32580177.978577 64511504.304906 71851346.002844 18137195.012586 61360909.288049 18439854.181579 64805623.296882 27308308.830580 76425232.582334 64079292.016407 45590861.591750 67390688.787858 72238289.478525 63700134.793014 14645718.105...
result:
ok 139 numbers
Test #46:
score: 0
Accepted
time: 1ms
memory: 7980kb
input:
363 48 2848407 94490 13 2637649 9916722 2 732789 4855406 51 2893711 4561193 20 1126975 6708190 16 7075171 9191864 76 7892061 1920562 39 6228923 4456638 61 3864794 8424493 85 5667261 860114 46 6165558 8556820 54 773561 8389099 50 918220 7120381 3 6296726 9015889 5 5522831 5169242 69 4121374 8912580 9...
output:
3564198.079240 38384664.542637 12056978.276040 33035516.675469 35505049.313251 29686269.611443 20274188.219530 23331133.186312 25006369.145106 9896480.711621 31484838.908664 26966227.754611 38143885.815154 37952386.198795 22945751.352925 24037696.977008 37021964.765407 13730187.122483 27449145.33105...
result:
ok 363 numbers
Test #47:
score: 0
Accepted
time: 1ms
memory: 5868kb
input:
186 92 8329378 5980864 75 4494508 4656001 90 7056784 7159588 95 6613815 2361283 57 448474 4156107 31 1428759 2622586 21 881675 2068340 48 1724555 6770495 69 3394759 8849354 1 5808704 3346636 17 7608925 5532956 67 7037846 4480725 29 582066 9910492 4 8373940 957478 59 3784660 6730326 80 2357277 760319...
output:
8451520.450246 4748304.773010 7286051.449295 6806855.298681 562187.728820 2067663.752271 1089997.160004 2362423.385046 7695970.208811 6515934.523196 7688659.881550 7434423.295412 3670385.398281 8409160.321052 3858730.163859 3163201.490274 7938737.234475 1395873.517622 3185842.800325 5336350.960588 3...
result:
ok 186 numbers
Test #48:
score: 0
Accepted
time: 0ms
memory: 7992kb
input:
156 37 1474705 1610342 28 1384500 9460688 78 8347644 9463771 35 5300785 161374 90 7138751 6636728 57 8479838 6053308 62 8904423 2216118 58 2187053 4117056 86 7957857 4498407 18 917012 6090054 95 6716648 2443685 79 5704041 5282751 100 2647822 2443706 1 7753663 8123259 18 2046490 3515601 92 5626314 12...
output:
2957012.996774 6972018.887174 19389936.789458 5447846.488536 16878683.460287 16710975.863694 13198424.828554 4556052.544011 19208531.816056 1680056.503468 9897221.717258 11204977.071620 21648556.033880 20124373.985126 3676386.998637 11331614.824258 7229221.216410 16452677.233833 16599246.725173 7649...
result:
ok 156 numbers