QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#404226 | #6304. Rectangle | by_chance | AC ✓ | 2699ms | 66184kb | C++14 | 5.4kb | 2024-05-03 16:24:30 | 2024-05-03 16:24:31 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
inline void chkmax(int&a,int b){if(a<b)a=b;}
inline void chkmin(int&a,int b){if(a>b)a=b;}
inline int read(){
int x=0;char ch=getchar();
while(ch<'0'||ch>'9')ch=getchar();
while(ch>='0'&&ch<='9')x=(x<<1)+(x<<3)+(ch^48),ch=getchar();
return x;
}
typedef long long ll;
const int N=2e5+10,P=998244353;
int C2(int x){return 1ll*x*(x-1)/2%P;}
int C3(int x){return 1ll*x*(x-1)%P*(x-2)%P*166374059%P;}
int T,n,S=1e9,x[N][2],y[N][2],X[N],xc,Y[N],yc,ans;
int mn[N<<2],len[N<<2];ll sum[N<<2],sl[N<<2];
struct node{
priority_queue<int> Q1,Q2;
void clear(){while(Q1.size())Q1.pop();while(Q2.size())Q2.pop();}
void ins(int x){Q1.push(-x);} void del(int x){Q2.push(-x);}
int top(){
while(Q2.size()&&Q1.top()==Q2.top())Q1.pop(),Q2.pop();
if(Q1.size())return -Q1.top();else return 1e9;
}
int size(){return Q1.size()-Q2.size();}
}tr[N];
#define ls p<<1
#define rs p<<1|1
#define mid ((l+r)>>1)
void build(int p,int l,int r){
mn[p]=S;len[p]=Y[r+1]-Y[l];
sum[p]=1ll*len[p]*mn[p];sl[p]=0;
if(l==r){tr[l].clear();return;}
build(ls,l,mid);build(rs,mid+1,r);sl[p]=sum[ls];
}
ll ask(int p,int l,int r,int v){
if(mn[p]>=v)return 1ll*len[p]*v;
if(l==r)return sum[p];
ll res=ask(rs,mid+1,r,v);
if(mn[rs]>v)res+=ask(ls,l,mid,v);
else res+=sl[p];return res;
}
void push_up(int p,int l,int r){
mn[p]=min(mn[ls],mn[rs]);sum[p]=sum[rs];
if(mn[p]==mn[rs])sl[p]=1ll*len[ls]*mn[rs];
else sl[p]=ask(ls,l,mid,mn[rs]);
sum[p]+=sl[p];
}
void modify(int p,int l,int r,int x,int v){
if(l==r){
if(v>0)tr[x].ins(v);else tr[x].del(-v);
mn[p]=tr[x].top();sum[p]=1ll*mn[p]*len[p];return;
}
if(x<=mid)modify(ls,l,mid,x,v);
else modify(rs,mid+1,r,x,v);
push_up(p,l,r);
}
int getmin(int p,int l,int r,int L,int R){
if(l>=L&&r<=R)return mn[p];int res=1e9;
if(L<=mid)chkmin(res,getmin(ls,l,mid,L,R));
if(R>mid)chkmin(res,getmin(rs,mid+1,r,L,R));
return res;
}
ll query(int p,int l,int r,int L,int R,int&now){
if(l>=L&&r<=R){
if(mn[p]>=now)return 1ll*len[p]*now;
int tmp=now;now=mn[p];return ask(p,l,r,tmp);
}
ll res=0;if(R>mid)res=query(rs,mid+1,r,L,R,now);
now=min(now,mn[rs]);if(L<=mid)res+=query(ls,l,mid,L,R,now);
return res;
}
vector<int> v1[N],v2[N];node pl,pr;
void ins(int p){
pl.ins(-y[p][0]);pr.ins(y[p][1]);
if(y[p][0]==1)return;modify(1,1,yc,y[p][0]-1,Y[y[p][1]+1]-1);
}
void del(int p){
pl.del(-y[p][0]);pr.del(y[p][1]);
if(y[p][0]==1)return;modify(1,1,yc,y[p][0]-1,-(Y[y[p][1]+1]-1));
}
int ask(){
int L=pl.size()?abs(pl.top()):1,
R=pr.size()?abs(pr.top()):yc;
int l=1,r=R;
while(l<=r){
if(getmin(1,1,yc,mid,yc)>=Y[max(mid,L)])r=mid-1;
else l=mid+1;
}
int pos=r+1,now=S+1;if(pos>R)return 0;ll suml=0;
if(L>R)suml=1ll*(Y[L]-1)*(Y[R+1]-Y[pos]);
else if(L>pos)suml=1ll*(Y[L]-1)*(Y[L]-Y[pos])+
1ll*(Y[R+1]-Y[L])*(Y[R+1]+Y[L]-1)/2;
else suml=1ll*(Y[R+1]+Y[pos]-1)*(Y[R+1]-Y[pos])/2;
return (query(1,1,yc,pos,R,now)%P-suml%P+P)%P;
}
int calc1(){
for(int i=1;i<=xc;i++)v1[i].clear(),v2[i].clear();
for(int i=1;i<=n;i++)
v1[x[i][0]].push_back(i),v2[x[i][1]].push_back(i);
build(1,1,yc);pl.clear();pr.clear();int res=0;
for(int i=1;i<=n;i++)ins(i);
for(int i=1;i<=xc;i++){
for(int j:v1[i])del(j);
res=(res+1ll*(X[i+1]-X[i])*ask())%P;
for(int j:v2[i])ins(j);
}
return res;
}
int lp[N],rp[N],fl[N],fr[N];
int calc2(){
for(int i=1;i<=xc;i++)lp[i]=0,rp[i]=xc+1;
for(int i=1;i<=n;i++){
chkmax(lp[x[i][1]],x[i][0]);
chkmin(rp[x[i][0]],x[i][1]);
}
int L=0,R=0;
for(int i=1;i<=xc;i++){
fl[i]=R?max(0,X[R+1]-X[L]):-1;
if(lp[i]!=0){if(!R)R=i,L=lp[i];chkmax(L,lp[i]);}
}L=0,R=0;
for(int i=xc;i>=1;i--){
fr[i]=L?max(0,X[R+1]-X[L]):-1;
if(rp[i]!=xc+1){if(!L)L=i,R=rp[i];chkmin(R,rp[i]);}
}
int res=0;
for(int i=1;i<=xc;i++){
int a=X[i]-1,b=X[i+1]-X[i],c=X[xc+1]-X[i+1];
if(fl[i]==-1&&fr[i]==-1)
res=(res+1ll*a*b%P*c%P+1ll*C2(b)*(a+c)%P+C3(b))%P;
else if(fl[i]==-1)res=(res+1ll*(1ll*a*b%P+C2(b))*fr[i]%P)%P;
else if(fr[i]==-1)res=(res+1ll*(1ll*c*b%P+C2(b))*fl[i]%P)%P;
else res=(res+1ll*fl[i]*fr[i]%P*b%P)%P;
}
return res;
}
void solve(){
n=read();xc=yc=ans=0;
for(int i=1;i<=n;i++){
X[++xc]=x[i][0]=read();Y[++yc]=y[i][0]=read();
X[++xc]=x[i][1]=read()+1;Y[++yc]=y[i][1]=read()+1;
}
X[++xc]=1;Y[++yc]=1;X[++xc]=S+1;Y[++yc]=S+1;
sort(X+1,X+xc+1);xc=unique(X+1,X+xc+1)-X-1;--xc;
sort(Y+1,Y+yc+1);yc=unique(Y+1,Y+yc+1)-Y-1;--yc;
for(int i=1;i<=n;i++){
x[i][0]=lower_bound(X+1,X+xc+1,x[i][0])-X;
y[i][0]=lower_bound(Y+1,Y+yc+1,y[i][0])-Y;
x[i][1]=lower_bound(X+1,X+xc+1,x[i][1])-X-1;
y[i][1]=lower_bound(Y+1,Y+yc+1,y[i][1])-Y-1;
}
ans=(ans+calc1())%P;ans=(ans+calc2())%P;
for(int i=1;i<=max(xc,yc)+1;i++)swap(X[i],Y[i]);swap(xc,yc);
for(int i=1;i<=n;i++)for(int c:{0,1})swap(x[i][c],y[i][c]);
ans=(ans+calc1())%P;ans=(ans+calc2())%P;
printf("%d\n",ans);
}
int main(){
// freopen("laser.in","r",stdin);
// freopen("laser.out","w",stdout);
T=read();S=1e9;
while(T--)solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 25708kb
input:
3 1 1 1 1000000000 1000000000 3 1 1 2 2 3 3 4 4 5 5 6 6 5 581574116 47617804 999010750 826131769 223840663 366320907 613364068 926991396 267630832 51913575 488301124 223957497 217461197 492085159 999485867 913732845 28144453 603781668 912516656 993160442
output:
230616300 64 977066618
result:
ok 3 number(s): "230616300 64 977066618"
Test #2:
score: 0
Accepted
time: 14ms
memory: 25672kb
input:
1000 10 5 7 6 10 4 3 6 9 1 6 3 7 1 1 7 10 1 2 7 7 5 2 8 3 2 1 5 7 1 1 10 6 1 7 2 8 4 7 5 9 10 6 6 8 10 4 4 9 9 2 4 6 5 5 3 10 10 1 3 4 4 2 2 3 6 7 5 8 6 2 7 8 8 5 7 10 10 2 4 7 8 10 3 6 6 10 1 2 7 4 7 5 10 9 4 5 8 9 2 7 5 9 2 2 9 7 3 3 8 4 1 1 8 6 5 4 10 6 3 9 7 10 10 3 1 8 9 1 3 8 10 4 1 7 4 2 4 5 ...
output:
28090346 21067815 91293528 63203269 14045217 24579047 49158123 56180656 10533942 83 28090372 101827338 512901428 38624242 10533932 42135595 7022614 7022661 7022622 31601641 21067817 35112979 7022628 7022682 17556485 42135554 59692019 28090452 14045202 73737099 42135505 31601703 49158091 28090434 108...
result:
ok 1000 numbers
Test #3:
score: 0
Accepted
time: 21ms
memory: 25720kb
input:
1000 10 56 6 85 86 2 67 79 76 41 32 57 94 7 24 95 72 4 82 98 99 21 16 64 95 5 15 97 50 75 34 93 63 65 1 74 40 62 50 91 57 10 1 66 4 99 73 28 80 35 9 46 84 72 57 12 74 75 24 20 72 86 30 35 51 52 20 32 80 48 1 27 38 38 79 30 91 86 49 11 78 31 10 84 36 95 84 18 76 83 96 87 6 97 24 59 74 79 81 36 6 49 1...
output:
286940182 6719 3879 10985 284425706 1482 154507014 337096188 15634 15198 13957 311811545 2065 487051821 104322525 4160 6232 3566 259869863 676660625 533734216 1108 210694302 941064564 9524057 366655439 960 712817222 294969344 505637269 5277 216 807601960 6489 192 252834684 9863 523061934 1036 370 16...
result:
ok 1000 numbers
Test #4:
score: 0
Accepted
time: 17ms
memory: 25652kb
input:
1000 10 151949335 343818689 226887829 843487881 26268786 629172470 727820988 753588469 239557045 129989050 828912527 803511337 216216272 737211068 952614934 901139965 9412307 270208240 969836975 781270622 210767204 691143582 734743967 978765608 115072779 149374200 365237395 723260248 373039270 50881...
output:
989992685 889170389 199600526 811602467 101647877 422274637 988817681 775346897 987827054 201664770 0 425324155 654779513 129937888 504567840 567363794 953468940 390846625 863893486 832900735 549488122 626520957 651708706 325695215 265584217 535054615 654784437 835844534 970196650 259827660 73563096...
result:
ok 1000 numbers
Test #5:
score: 0
Accepted
time: 309ms
memory: 25712kb
input:
20000 10 387518709 362080654 857718988 413892967 259574026 383071239 349422952 406322216 252781835 421214199 960954668 766986966 709548059 152868851 829506776 286195984 533564379 238783143 835360470 804665480 37715197 439312193 350269160 510361284 760325088 379134217 996444460 640572941 75706031 242...
output:
425031005 145199488 76594243 608094392 105901554 767793557 925027675 718008576 542146803 257776847 83948409 557131094 957234323 316994452 711146361 878596101 863265391 86278462 882556696 943381219 171834801 312110039 509815322 995001589 267270543 321796762 646607323 535110629 612892338 264981338 862...
result:
ok 20000 numbers
Test #6:
score: 0
Accepted
time: 300ms
memory: 25632kb
input:
20000 9 23397362 5465077 922916650 905326448 334129892 259574026 806023297 349422952 85390000 14589070 252781835 159363469 518493829 9904109 881263301 763351170 376515120 592421912 709548059 922381128 522936 888125869 919020884 968891551 192627293 528719402 238783143 846674462 269993278 155196111 41...
output:
38446691 441652008 80634077 86958519 313123987 37147655 292453230 135822548 347213034 875178269 572593450 121333363 910761745 288628833 144542647 336001702 492148086 504465362 307137735 40715447 936972207 895075762 698856636 442121431 960601688 728799681 619152060 51416671 586371383 183976942 996194...
result:
ok 20000 numbers
Test #7:
score: 0
Accepted
time: 542ms
memory: 25708kb
input:
2000 98 441828066 355550044 980140398 758338808 139187839 379489833 732496729 915149220 6198442 7406064 811667085 671521385 634108502 54340068 750182168 712125681 51518185 164417838 414217749 690302726 26971686 349814847 96913121 613904116 18885592 344395345 969337141 761958781 6500321 288362602 695...
output:
847505316 69861689 762022665 942187496 610542723 297361682 408287130 37288980 129194998 781348133 138625309 885806848 596340815 251557403 136654463 415973838 348935020 217451841 607735223 183258123 453186006 29511771 486730947 90933161 744360742 932334149 464917933 58351031 36268611 777434481 348682...
result:
ok 2000 numbers
Test #8:
score: 0
Accepted
time: 835ms
memory: 26080kb
input:
200 993 336152525 31049117 970839548 34483370 257968529 73378100 760295564 459870661 769587893 565770848 979251259 884779692 92706327 715631888 976631772 730467480 102936760 674056008 996888200 756831534 141490448 466112222 761954523 960644829 601216664 500053814 974949771 928192751 298296452 359164...
output:
163043779 101789580 214159985 605122084 222495872 595662571 919415389 27790333 940923361 745272650 432367810 269413997 881525570 275197159 128519736 759744770 394059985 858394070 885939030 507707772 380648232 853123251 659897376 142847962 866652391 78179639 672081467 655879491 267275050 880872481 74...
result:
ok 200 numbers
Test #9:
score: 0
Accepted
time: 229ms
memory: 25940kb
input:
200 989 1 8 5 9 6 4 9 7 9 4 10 10 3 3 8 7 7 1 9 5 9 4 10 6 4 3 7 8 3 1 7 4 2 5 3 6 3 4 4 7 4 3 7 9 1 2 9 8 4 3 6 4 2 2 6 10 6 8 7 10 2 1 3 9 1 1 4 10 1 5 4 8 2 3 4 9 4 3 9 9 1 2 6 7 7 4 9 5 4 3 8 10 4 1 8 10 7 2 8 5 2 4 3 8 5 4 10 6 9 1 10 5 5 3 7 7 6 4 10 10 6 6 7 9 1 1 3 10 2 2 9 8 2 3 7 8 3 9 10 ...
output:
3 1 2 1 2 1 2 3511294 1 3511294 2 2 3511295 3 2 2 6 1 2 1 1 3 1 3511294 1 1 10533874 1 1 1 2 2 1 6 432141794 1 1 2 4 1 3511294 2 3511294 3 3 1 2 1 853749714 3 3 7022585 3511294 2 2 3 7022585 3 14045164 1 2 1 1 1 4 2 4 3511295 3 3 3511295 3511295 7022585 1 2 1 3 2 1 7022585 2 2 2 3 2 7022585 2 4 3 2 ...
result:
ok 200 numbers
Test #10:
score: 0
Accepted
time: 423ms
memory: 25996kb
input:
200 993 5 48 42 78 55 33 66 92 6 5 38 34 38 34 82 48 9 76 34 86 50 39 72 44 46 54 96 82 4 13 68 24 39 25 93 56 36 53 98 86 19 10 73 24 54 27 97 84 34 21 93 76 44 7 70 89 63 73 97 98 50 24 94 35 8 30 98 67 3 15 81 67 39 9 78 24 8 65 100 98 13 5 86 33 54 67 99 84 3 2 43 4 53 51 70 86 1 61 61 90 46 78 ...
output:
1 1 2 1 2 3 2 1 2 1 1 1 1 1 2 2 1 2 2 17 1 3 1 10 1 2 2 1 1 81 15 1 170 1 4 1 2 1 1 2 1 2 1 2 1 1 4 1 2 1 2 1 1 1 1 2 3511413 1 2 1 2 2 7022597 1 2 2 2 2 2 1 1 1 1 2 1 1 2 1 1 1 1 1 1 3 2 4 1 2 3 1 6 1 1 1 2 1 1 1 1 2 10 6 5 1 1 1 1 1 1 2 10 6 2 4 3 3511332 2 2 1 1 1 4 1 2 1 2 1 5 7 6 1 1 2 1 1 1 1 ...
result:
ok 200 numbers
Test #11:
score: 0
Accepted
time: 1427ms
memory: 30272kb
input:
20 9956 444627993 347200064 774678572 839098978 96936514 121569633 839637347 729127099 343857875 554213034 875416430 628610537 15566043 187047055 405963021 764745923 487340755 59747358 604299543 832826844 486772462 67273090 826002755 268527861 703758831 112254125 887710074 874858855 569284980 830139...
output:
723891885 824191538 424987081 659035365 778857924 125675099 919713447 291966121 841813 399938856 822967409 178787426 958377822 295302425 835192235 569958073 114037901 814150865 893384876 929070768
result:
ok 20 numbers
Test #12:
score: 0
Accepted
time: 2489ms
memory: 64060kb
input:
2 99774 247800693 19906287 955213467 53123614 752909581 205074868 772413424 686934334 565298662 150234672 941079197 750300220 29485217 794172007 678447605 874228231 524081254 14156413 775198532 256753797 121163010 271762780 489047491 996802646 61272893 135510320 459683721 975698463 37577668 16804082...
output:
272047384 165799897
result:
ok 2 number(s): "272047384 165799897"
Test #13:
score: 0
Accepted
time: 2474ms
memory: 64496kb
input:
2 99484 80367959 446700298 316938043 713030699 180389 97354205 991264982 207371172 227833166 343626198 994287807 999074121 223486533 274166047 762438540 996451527 139307586 443291005 936748272 801084030 368603416 246191750 992851831 575339592 136221208 723918872 407787921 838545617 455487191 6275486...
output:
802453384 719182239
result:
ok 2 number(s): "802453384 719182239"
Test #14:
score: 0
Accepted
time: 2509ms
memory: 64732kb
input:
2 99702 94595645 404782179 993272416 799556541 245960576 714158438 987938798 821638563 327691314 213461603 998000552 819971477 908733781 18331290 994253841 385477664 28676928 357826789 998470667 719588896 710572487 806027973 975068392 829637377 822675537 183304736 991051351 955945560 469997956 65270...
output:
652843490 385598972
result:
ok 2 number(s): "652843490 385598972"
Test #15:
score: 0
Accepted
time: 2483ms
memory: 63928kb
input:
2 99412 198128938 38044404 520528603 69633461 296156091 253862054 879892175 422416582 113833513 497466407 912643387 778378206 852447189 420378642 973727926 802939446 34007282 574929361 774903967 607765114 349114758 378613356 379719307 996737934 263835095 266671229 866002851 601998719 429266410 68169...
output:
399712945 504439560
result:
ok 2 number(s): "399712945 504439560"
Test #16:
score: 0
Accepted
time: 2642ms
memory: 58196kb
input:
2 99774 75930961 154072381 847971169 627055843 244525147 409278367 925944938 528328481 129723553 183994451 964033785 826775854 68114505 152036158 731700382 837809150 53123614 32632966 910136942 528684484 252909581 230872854 640150186 541470159 486420648 319619359 641792851 842591283 120182438 144662...
output:
201422441 375708952
result:
ok 2 number(s): "201422441 375708952"
Test #17:
score: 0
Accepted
time: 2699ms
memory: 57892kb
input:
2 99484 354512509 247852935 857376242 935585705 229195412 489307246 734432800 913935320 412027735 213030699 758437130 984647634 92940939 374006481 731384363 511640022 207371172 201030984 553877630 516667157 227833166 100756172 987896615 711405227 211506664 32713580 677678240 836139667 12482308 26243...
output:
206929702 212882508
result:
ok 2 number(s): "206929702 212882508"
Test #18:
score: 0
Accepted
time: 2578ms
memory: 58304kb
input:
2 99774 421095862 11979 995712432 500003783 74991422 13267 987221609 500005947 473667912 15491 579440162 500007494 272043704 19052 616675855 500007502 278107248 23574 823547269 500016619 99934893 24255 891019779 500027215 79491760 25101 858593398 500029356 389573792 28614 992644024 500031209 4814993...
output:
276881665 190505423
result:
ok 2 number(s): "276881665 190505423"
Test #19:
score: 0
Accepted
time: 2580ms
memory: 58284kb
input:
2 99484 269092999 2671 585644878 500008033 372100401 8563 649839023 500009251 11650408 13647 528532391 500010810 75879435 17429 948107876 500012680 387930366 29201 868851180 500016196 237571354 29479 835522858 500029354 449017445 36501 967334218 500029916 115558018 37338 572750917 500032757 28547691...
output:
966302926 659824663
result:
ok 2 number(s): "966302926 659824663"
Test #20:
score: 0
Accepted
time: 2594ms
memory: 66184kb
input:
2 100000 754616987 692578669 762385085 792789635 125404016 208944814 515858719 643886493 211266037 375488155 733820614 638134169 438299584 685393805 886369360 872046908 802228771 454379005 917034699 570584282 292374663 161921658 827473191 255585103 851878474 200274303 956604075 726081646 179044352 9...
output:
0 0
result:
ok 2 number(s): "0 0"
Test #21:
score: 0
Accepted
time: 1485ms
memory: 30296kb
input:
20 9956 444627993 347200064 774678572 839098978 96936514 121569633 839637347 729127099 343857875 554213034 875416430 628610537 15566043 187047055 405963021 764745923 487340755 59747358 604299543 832826844 486772462 67273090 826002755 268527861 703758831 112254125 887710074 874858855 569284980 830139...
output:
723891885 858451192 338913450 0 374481170 0 372871015 758146456 943438772 972933858 103815851 223844636 0 221315585 0 927233491 87870972 0 974315240 0
result:
ok 20 numbers
Test #22:
score: 0
Accepted
time: 840ms
memory: 26132kb
input:
200 993 336152525 31049117 970839548 34483370 257968529 73378100 760295564 459870661 769587893 565770848 979251259 884779692 92706327 715631888 976631772 730467480 102936760 674056008 996888200 756831534 141490448 466112222 761954523 960644829 601216664 500053814 974949771 928192751 298296452 359164...
output:
163043779 931879100 340196911 603166447 571390080 941998134 535799686 806119803 0 0 968763447 0 505819026 301019994 445840311 913276365 0 0 0 0 373552780 469172930 895190508 788634597 448187144 0 59265419 601265027 881546313 822325486 0 0 948651482 529402096 510913350 0 0 330047724 19129674 51376051...
result:
ok 200 numbers
Test #23:
score: 0
Accepted
time: 538ms
memory: 25872kb
input:
2000 98 441828066 355550044 980140398 758338808 139187839 379489833 732496729 915149220 6198442 7406064 811667085 671521385 634108502 54340068 750182168 712125681 51518185 164417838 414217749 690302726 26971686 349814847 96913121 613904116 18885592 344395345 969337141 761958781 6500321 288362602 695...
output:
847505316 672057059 0 991749478 955014565 674711156 512643789 13536242 259157042 697460156 315324274 16820689 214291497 744247395 329778126 790070062 483967980 0 866914675 14414666 805420059 363232673 937992739 752762044 998000591 0 190653624 911419118 204932075 533889386 0 0 945352404 342908219 308...
result:
ok 2000 numbers
Test #24:
score: 0
Accepted
time: 141ms
memory: 25696kb
input:
100000 2 775086006 424901926 899447001 457273141 530656416 24127940 816730296 182824942 2 133448509 220692583 266404827 585541277 287907002 605654910 393289456 924736781 2 401696411 773194424 634303570 904175508 423057303 216493046 589873987 629571934 2 41138650 82403078 570504605 136479528 20017467...
output:
344597716 344561652 640677942 566457599 534894296 634815985 720802151 390192816 916770283 615422820 61143661 357457269 309084331 301952468 768959678 324515596 35801341 379330323 877366125 304583614 168573950 338498007 344179264 828689538 123780346 613736137 283614241 647439497 207739096 856885350 15...
result:
ok 100000 numbers