QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#792351#8950. 树据结构misfits#76 515ms879040kbC++146.1kb2024-11-29 09:28:552024-11-29 09:28:55

Judging History

你现在查看的是最新测评结果

  • [2024-11-29 09:28:55]
  • 评测
  • 测评结果:76
  • 用时:515ms
  • 内存:879040kb
  • [2024-11-29 09:28:55]
  • 提交

answer

#include<bits/stdc++.h>
#define LL int
#define SZ(x) ((LL)(x.size()))
#define all(x) (x).begin(),(x).end()
using namespace std;
inline LL read(){
  LL q=0,w=1;char ch=getchar();
  while(ch>'9' || ch<'0'){if(ch=='-')w=-1;ch=getchar();}
  while(ch>='0'&&ch<='9'){q=q*10+(ch-'0');ch=getchar();}
  return q*w;
}
#define ll long long
void write(LL x){
  if(x<0){putchar('-');x=(-x);}
  if(x>9)write(x/10);
  putchar('0'+x%10);
}
inline void writeln(LL x){write(x);puts("");}
inline void writecs(LL x){write(x);putchar(' ');}

inline void dmin(LL &x,LL y){if(x>y)x=y;return ;}
inline void dmax(LL &x,LL y){if(x<y)x=y;return ;}

#define cout cerr
#define pb push_back

const LL N = 100000+95 , M = 450 ;
LL n,m,fa[N];vector<LL>E[N];

struct atom{LL l,r,d;};atom dat[N][M];

LL dep[N],rep[N],ext[M],tag[N<<1][M];vector<LL>vc[N];

int main(){
  //  freopen("cpp.in","r",stdin);
  n=read();m=read();dep[1]=1;vc[dep[1]].pb(1);LL mx=1;
  for(LL t=2;t<=n;t++){fa[t]=read();E[fa[t]].pb(t);dep[t]=dep[fa[t]]+1;dmax(mx,dep[t]);vc[dep[t]].pb(t);}
  vector<LL>vec;vec.pb(0);for(LL t=1;t<=mx;t++)vec.pb(SZ(vc[t]));
  sort(all(vec));vec.erase(unique(all(vec)),vec.end());LL lim=SZ(vec)-1;

  //  cout<<" vec : ";for(auto d:vec)cout<<d<<" ";cout<<endl;
  for(LL t=1;t<=n;t++){
    LL l=1,r=lim,pos=-1;
    while(l<=r){
      LL mid=(l+r)>>1;
      if(vec[mid]<=SZ(vc[dep[t]])){l=mid+1;pos=mid;}
      else {r=mid-1;}
    }
    //    cout<<" pos = "<<pos<<endl;
    //    cout<<" vec[pos] = "<<vec[pos]<<endl;
    assert(pos!=-1&&vec[pos]==SZ(vc[dep[t]]));rep[t]=pos;dmax(ext[rep[t]],dep[t]);
  }
  for(LL t=1;t<=n;t++)
    for(LL i=1;i<=lim;i++)dat[t][i]=(atom){n+1,0,n+1};
  for(LL x=n;x>=1;x--){
    dat[x][rep[x]]=(atom){x,x,dep[x]};
    for(auto y:E[x])
      for(LL i=rep[x]+1;i<=lim;i++){
	dmin(dat[x][i].l,dat[y][i].l);
	dmax(dat[x][i].r,dat[y][i].r);
	dmin(dat[x][i].d,dat[y][i].d);
      }
  }
  /*  for(LL x=1;x<=n;x++){
    for(LL i=1;i<=lim;i++)
      if(dat[x][i].l!=n+1){
	cout<<" -> x = "<<x<<" vec[i] = "<<vec[i]<<" dat[x][i] : l = "<<dat[x][i].l<<" r = "<<dat[x][i].r<<" d = "<<dat[x][i].d<<endl;
      }
    cout<<endl;
  }*/

  LL dt=0,TC=m;//,_TC=0;
  while(TC--){
    //    _TC++;
    LL opt=read();
    if(opt==1){
      LL x=read(),y=read();
      //      cout<<" -> x = "<<x<<" y = "<<y<<" _TC = "<<_TC<<" dt = "<<dt<<endl;
      for(LL i=rep[x];i<=lim;i++){
	LL B=vec[i];LL k=ext[i]-dat[x][i].d+1;
	LL l=dat[x][i].l,r=dat[x][i].r;
	//	cout<<" i = "<<i<<" vec[i] = "<<vec[i]<<" l = "<<l<<" r = "<<r<<" k = "<<k<<endl;
	tag[(m-dt)+l][i]+=y;
	//	cout<<" (m-dt)+l = "<<(m-dt)+l<<endl;
	if(r+1<=m+n)tag[(m-dt)+r+1][i]-=y;
	if(l+k*B<=m+n)tag[(m-dt)+l+k*B][i]-=y;
	if(r+1+k*B<=m+n)tag[(m-dt)+r+1+k*B][i]+=y;
      }
    }
    else {dt++;}
    //    if(_TC==12)break;
  }

  for(LL x=1;x<=m+n;x++)
    for(LL i=1;i<=lim;i++)tag[x][i]+=tag[x-1][i];
  for(LL x=1;x<=m+n;x++)
    for(LL i=1;i<=lim;i++)if(x+vec[i]<=m+n)tag[x+vec[i]][i]+=tag[x][i];

  LL ans=0;
  for(LL i=1;i<=n;i++){
    LL x=m+i;ll u=0ll;
    while(x>=1){
      for(LL j=1;j<=lim;j++)u+=tag[x][j];
      //      cout<<" -> x = "<<x<<" i = "<<i<<endl;
      x-=n;
    }
    ans^=u;
    //    cout<<" -> i = "<<i<<" u = "<<u<<endl;
  }
  writeln(ans);
  
  return 0;
}
/*
my test data:
input:
459 185
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 276 276 276 277 278 278 279 280 281 282 283 284 285 286 287 288 288 289 289 289 290 290 290 290 290 291 291 291 292 292 292 293 294 294 294 295 295 295 296 297 297 297 298 299 299 300 301 302 302 303 304 305 305 306 307 308 309 310 311 312 313 313 314 314 315 316 316 317 318 319 320 320 321 322 322 323 324 325 325 326 327 328 328 329 330 330 331 332 333 333 334 334 334 335 336 336 336 337 337 337 338 338 339 340 341 342 342 343 343 344 345 345 346 347 347 348 348 349 350 351 352 353 354 354 355 356 357 358 359 360 360 361 362 363 364 365 366 366 367 368 369 370 371 372 373 374 375 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 390 391 392 392 393 394 394 395 395 396 397 398 399 400 401 402 403 404 404 
2 
2 
2 
2 
1 294 1
2 
2 
2 
1 349 1
2 
1 287 1
1 239 1
1 155 1
2 
1 184 1
1 21 1
1 409 1
2 
2 
2 
2 
2 
2 
2 
1 331 1
1 104 1
1 367 1
1 324 1
2 
2 
1 423 1
2 
2 
1 26 1
2 
2 
2 
1 328 1
2 
1 267 1
2 
1 262 1
1 72 1
2 
2 
1 283 1
2 
2 
1 198 1
1 79 1
2 
1 261 1
1 307 1
1 303 1
2 
1 428 1
2 
2 
1 196 1
1 116 1
2 
2 
1 57 1
1 113 1
2 
2 
1 10 1
2 
1 378 1
2 
2 
1 328 1
2 
1 383 1
2 
2 
1 216 1
2 
2 
1 442 1
1 274 1
2 
2 
1 55 1
2 
1 421 1
2 
1 143 1
2 
1 20 1
1 401 1
1 157 1
2 
1 397 1
2 
2 
2 
2 
2 
1 411 1
2 
1 423 1
1 210 1
1 44 1
1 63 1
1 182 1
1 338 1
2 
2 
1 339 1
1 268 1
2 
2 
1 193 1
1 334 1
1 85 1
2 
1 455 1
2 
2 
1 268 1
1 146 1
1 6 1
2 
1 78 1
2 
1 134 1
2 
1 370 1
1 247 1
1 168 1
1 247 1
2 
2 
1 292 1
2 
2 
1 232 1
2 
1 360 1
1 297 1
1 145 1
1 326 1
2 
2 
1 405 1
1 371 1
2 
1 419 1
1 8 1
1 240 1
2 
2 
2 
1 198 1
2 
2 
1 52 1
2 
1 49 1
2 
2 
2 
2 
1 226 1
1 185 1
2 
1 50 1
2 
2 
2 
1 302 1
1 393 1
2 
1 36 1
2 
2 
2 
1 204 1
2 
2 
1 410 1
1 313 1
2 
1 227 1

output:
56
*/

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 21
Accepted

Test #1:

score: 21
Accepted
time: 4ms
memory: 22752kb

input:

994 980
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 88 89 90 91 92 93 94 95 96 97 9...

output:

1003408

result:

ok single line: '1003408'

Test #2:

score: 21
Accepted
time: 0ms
memory: 22564kb

input:

991 987
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 93 94 95 96 97 9...

output:

1686534

result:

ok single line: '1686534'

Test #3:

score: 21
Accepted
time: 0ms
memory: 22800kb

input:

999 997
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 94 95 96 97 9...

output:

2959899

result:

ok single line: '2959899'

Test #4:

score: 21
Accepted
time: 0ms
memory: 22988kb

input:

980 983
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 97 9...

output:

208329

result:

ok single line: '208329'

Test #5:

score: 21
Accepted
time: 0ms
memory: 22440kb

input:

993 996
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 92 93 94 95 96 97 9...

output:

1739252

result:

ok single line: '1739252'

Test #6:

score: 21
Accepted
time: 0ms
memory: 22492kb

input:

999 982
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 9...

output:

1806282

result:

ok single line: '1806282'

Test #7:

score: 21
Accepted
time: 0ms
memory: 22492kb

input:

984 984
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 92 93 94 95 96 97 9...

output:

3930333

result:

ok single line: '3930333'

Test #8:

score: 21
Accepted
time: 0ms
memory: 22552kb

input:

984 986
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 9...

output:

430114

result:

ok single line: '430114'

Test #9:

score: 21
Accepted
time: 0ms
memory: 22556kb

input:

987 987
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 91 92 93 94 95 96 97 9...

output:

1548732

result:

ok single line: '1548732'

Test #10:

score: 21
Accepted
time: 3ms
memory: 22800kb

input:

994 985
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 97 9...

output:

2086747

result:

ok single line: '2086747'

Test #11:

score: 21
Accepted
time: 0ms
memory: 22496kb

input:

998 994
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 91 92 93 94 95 96 97 9...

output:

1850583

result:

ok single line: '1850583'

Test #12:

score: 21
Accepted
time: 0ms
memory: 22976kb

input:

985 999
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 88 89 90 91 92 93 94 95 96 97 9...

output:

851122

result:

ok single line: '851122'

Subtask #2:

score: 0
Wrong Answer

Test #13:

score: 0
Wrong Answer
time: 515ms
memory: 879040kb

input:

98132 98277
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

210318574

result:

wrong answer 1st lines differ - expected: '188162172', found: '210318574'

Subtask #3:

score: 8
Accepted

Test #25:

score: 8
Accepted
time: 40ms
memory: 778500kb

input:

98694 98643
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

1233260

result:

ok single line: '1233260'

Test #26:

score: 8
Accepted
time: 47ms
memory: 782020kb

input:

99200 99039
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

16711663

result:

ok single line: '16711663'

Test #27:

score: 8
Accepted
time: 39ms
memory: 777808kb

input:

98478 99308
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

56434171

result:

ok single line: '56434171'

Test #28:

score: 8
Accepted
time: 40ms
memory: 775668kb

input:

98176 98655
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

64451660

result:

ok single line: '64451660'

Test #29:

score: 8
Accepted
time: 36ms
memory: 780112kb

input:

99264 98305
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

8074498

result:

ok single line: '8074498'

Test #30:

score: 8
Accepted
time: 55ms
memory: 774436kb

input:

98217 99102
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

230402545

result:

ok single line: '230402545'

Test #31:

score: 8
Accepted
time: 64ms
memory: 776692kb

input:

98380 98622
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

462226140

result:

ok single line: '462226140'

Test #32:

score: 8
Accepted
time: 76ms
memory: 783956kb

input:

99576 99220
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

315932215

result:

ok single line: '315932215'

Test #33:

score: 8
Accepted
time: 52ms
memory: 782844kb

input:

99549 98210
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

166790458

result:

ok single line: '166790458'

Test #34:

score: 8
Accepted
time: 44ms
memory: 781700kb

input:

98893 99868
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

179140940

result:

ok single line: '179140940'

Test #35:

score: 8
Accepted
time: 52ms
memory: 782860kb

input:

99409 98962
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

228593512

result:

ok single line: '228593512'

Test #36:

score: 8
Accepted
time: 32ms
memory: 783284kb

input:

99988 98174
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

116635119

result:

ok single line: '116635119'

Subtask #4:

score: 13
Accepted

Test #37:

score: 13
Accepted
time: 83ms
memory: 645660kb

input:

65535 98062
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 ...

output:

5623100

result:

ok single line: '5623100'

Test #38:

score: 13
Accepted
time: 68ms
memory: 646068kb

input:

65535 99002
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 ...

output:

3597097

result:

ok single line: '3597097'

Test #39:

score: 13
Accepted
time: 84ms
memory: 645720kb

input:

65535 98054
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 ...

output:

5124906

result:

ok single line: '5124906'

Test #40:

score: 13
Accepted
time: 59ms
memory: 631212kb

input:

65535 99157
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 ...

output:

1073250

result:

ok single line: '1073250'

Test #41:

score: 13
Accepted
time: 52ms
memory: 632296kb

input:

65535 99768
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 ...

output:

1682909

result:

ok single line: '1682909'

Test #42:

score: 13
Accepted
time: 67ms
memory: 632212kb

input:

65535 99233
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 ...

output:

1740923

result:

ok single line: '1740923'

Test #43:

score: 13
Accepted
time: 75ms
memory: 648544kb

input:

65535 99947
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 ...

output:

2018621

result:

ok single line: '2018621'

Test #44:

score: 13
Accepted
time: 64ms
memory: 647120kb

input:

65535 98464
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 ...

output:

1913297

result:

ok single line: '1913297'

Test #45:

score: 13
Accepted
time: 63ms
memory: 646024kb

input:

65535 98799
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 ...

output:

1708962

result:

ok single line: '1708962'

Test #46:

score: 13
Accepted
time: 55ms
memory: 632856kb

input:

65535 98882
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 ...

output:

800439

result:

ok single line: '800439'

Test #47:

score: 13
Accepted
time: 52ms
memory: 631864kb

input:

65535 99193
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 ...

output:

1558061

result:

ok single line: '1558061'

Test #48:

score: 13
Accepted
time: 64ms
memory: 630632kb

input:

65535 98396
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 ...

output:

549060

result:

ok single line: '549060'

Subtask #5:

score: 13
Accepted

Test #49:

score: 13
Accepted
time: 75ms
memory: 799500kb

input:

99562 98687
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

9056060

result:

ok single line: '9056060'

Test #50:

score: 13
Accepted
time: 71ms
memory: 796772kb

input:

99213 98116
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

424634871

result:

ok single line: '424634871'

Test #51:

score: 13
Accepted
time: 83ms
memory: 794136kb

input:

98762 98647
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

88380

result:

ok single line: '88380'

Test #52:

score: 13
Accepted
time: 72ms
memory: 795912kb

input:

98578 99691
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

1413449

result:

ok single line: '1413449'

Test #53:

score: 13
Accepted
time: 80ms
memory: 792824kb

input:

98408 98239
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

15005940

result:

ok single line: '15005940'

Test #54:

score: 13
Accepted
time: 103ms
memory: 792488kb

input:

98295 98162
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

221010022

result:

ok single line: '221010022'

Test #55:

score: 13
Accepted
time: 111ms
memory: 801440kb

input:

99958 98575
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

32424685

result:

ok single line: '32424685'

Test #56:

score: 13
Accepted
time: 108ms
memory: 801348kb

input:

99475 99269
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

243582765

result:

ok single line: '243582765'

Test #57:

score: 13
Accepted
time: 96ms
memory: 792288kb

input:

98308 98914
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

10526571

result:

ok single line: '10526571'

Test #58:

score: 13
Accepted
time: 79ms
memory: 797880kb

input:

99277 98904
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

141461801

result:

ok single line: '141461801'

Test #59:

score: 13
Accepted
time: 96ms
memory: 794268kb

input:

98825 98781
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

136879793

result:

ok single line: '136879793'

Test #60:

score: 13
Accepted
time: 80ms
memory: 795168kb

input:

98740 98957
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

13237036

result:

ok single line: '13237036'

Subtask #6:

score: 21
Accepted

Test #61:

score: 21
Accepted
time: 183ms
memory: 463840kb

input:

49861 49257
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

150839800

result:

ok single line: '150839800'

Test #62:

score: 21
Accepted
time: 159ms
memory: 465048kb

input:

49465 49496
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

153267350

result:

ok single line: '153267350'

Test #63:

score: 21
Accepted
time: 193ms
memory: 459644kb

input:

49579 49266
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

152220548

result:

ok single line: '152220548'

Test #64:

score: 21
Accepted
time: 184ms
memory: 450304kb

input:

49191 49769
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

80854435

result:

ok single line: '80854435'

Test #65:

score: 21
Accepted
time: 178ms
memory: 455064kb

input:

49047 49770
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

84410185

result:

ok single line: '84410185'

Test #66:

score: 21
Accepted
time: 181ms
memory: 457348kb

input:

49763 49130
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

87541634

result:

ok single line: '87541634'

Test #67:

score: 21
Accepted
time: 179ms
memory: 461956kb

input:

49694 49131
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

2101374

result:

ok single line: '2101374'

Test #68:

score: 21
Accepted
time: 179ms
memory: 457508kb

input:

49857 49071
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

80132959

result:

ok single line: '80132959'

Test #69:

score: 21
Accepted
time: 183ms
memory: 457316kb

input:

49097 49045
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

86189536

result:

ok single line: '86189536'

Test #70:

score: 21
Accepted
time: 168ms
memory: 449800kb

input:

49596 49344
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

1733042

result:

ok single line: '1733042'

Test #71:

score: 21
Accepted
time: 171ms
memory: 446684kb

input:

49241 49916
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

46443235

result:

ok single line: '46443235'

Test #72:

score: 21
Accepted
time: 28ms
memory: 408976kb

input:

49939 49489
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:

208778722

result:

ok single line: '208778722'

Subtask #7:

score: 0
Runtime Error

Test #73:

score: 0
Runtime Error

input:

98390 98942
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...

output:


result: