QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#441954#1142. Fountain Parkshos_lyric100 ✓203ms31644kbC++142.8kb2024-06-14 23:31:442024-06-14 23:31:44

Judging History

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

  • [2024-06-14 23:31:44]
  • 评测
  • 测评结果:100
  • 用时:203ms
  • 内存:31644kb
  • [2024-06-14 23:31:44]
  • 提交

answer

#include "parks.h"

#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>

using namespace std;

using Int = long long;

template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }
#define COLOR(s) ("\x1b[" s "m")


vector<int> uf;
int root(int u) {
  return (uf[u] < 0) ? u : (uf[u] = root(uf[u]));
}
bool connect(int u, int v) {
  u = root(u);
  v = root(v);
  if (u == v) return false;
  if (uf[u] > uf[v]) swap(u, v);
  uf[u] += uf[v];
  uf[v] = u;
  return true;
}


/*
  o-^-o-v-o
  |   |   |
  >   <   >
  |   |   |
  o-v-o-^-o
  |   |   |
  <   >   <
  |   |   |
  o-^-o-v-o
  
  want:
  - path from (x, y) to (x-2, y)
  - path from (x, y) to (x, y-2)
*/

map<pair<int, int>, int> ids;
int id(int x, int y) {
  auto it = ids.find(make_pair(x, y));
  if (it != ids.end()) {
    return it->second;
  } else {
    return -1;
  }
}

int construct_roads(vector<int> X, vector<int> Y) {
  const int N = X.size();
  for (int u = 0; u < N; ++u) {
    ids[make_pair(X[u], Y[u])] = u;
  }
  
  uf.assign(N, -1);
  vector<int> U, V, A, B;
  for (const auto &kv : ids) {
    const int u = kv.second;
    const int x = X[u], y = Y[u];
    const int s = (x/2 + y/2) & 1;
    const int v = id(x-2, y);
    const int w = id(x, y-2);
    const int t = id(x-2, y-2);
    /*
      tv
      wu
    */
    if (~v && !(s == 0 && ~w && ~t)) {
      connect(u, v);
      U.push_back(u);
      V.push_back(v);
      A.push_back(x-1);
      B.push_back((s == 0) ? (y-1) : (y+1));
    }
    if (~w && !(s == 1 && ~v && ~t)) {
      connect(u, w);
      U.push_back(u);
      V.push_back(w);
      A.push_back((s == 1) ? (x-1) : (x+1));
      B.push_back(y-1);
    }
  }
  if (-uf[root(0)] == N) {
    build(U, V, A, B);
    return 1;
  } else {
    return 0;
  }
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 5
Accepted

Test #1:

score: 5
Accepted
time: 0ms
memory: 3772kb

input:

ba73dbf9c7d5e5202834d6a500541c
1
2 2

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
0

result:

ok 

Test #2:

score: 0
Accepted
time: 0ms
memory: 3816kb

input:

ba73dbf9c7d5e5202834d6a500541c
2
2 2
2 4

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
1
1 0 1 3

result:

ok 

Test #3:

score: 0
Accepted
time: 0ms
memory: 4112kb

input:

ba73dbf9c7d5e5202834d6a500541c
2
2 2
2 6

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #4:

score: 0
Accepted
time: 0ms
memory: 3808kb

input:

ba73dbf9c7d5e5202834d6a500541c
3
2 2
2 4
2 6

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
2
1 0 1 3
2 1 3 5

result:

ok 

Test #5:

score: 0
Accepted
time: 0ms
memory: 4100kb

input:

ba73dbf9c7d5e5202834d6a500541c
4
2 2
2 4
2 6
2 8

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
3
1 0 1 3
2 1 3 5
3 2 1 7

result:

ok 

Test #6:

score: 0
Accepted
time: 0ms
memory: 3812kb

input:

ba73dbf9c7d5e5202834d6a500541c
3
2 2
2 4
2 8

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #7:

score: 0
Accepted
time: 0ms
memory: 3820kb

input:

ba73dbf9c7d5e5202834d6a500541c
4
2 2
2 4
2 8
2 10

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #8:

score: 0
Accepted
time: 0ms
memory: 4068kb

input:

ba73dbf9c7d5e5202834d6a500541c
4
2 2
2 4
2 6
2 10

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #9:

score: 0
Accepted
time: 58ms
memory: 16172kb

input:

ba73dbf9c7d5e5202834d6a500541c
100000
2 15660
2 23918
2 132200
2 117654
2 162750
2 183010
2 75554
2 29740
2 185476
2 135138
2 194024
2 182274
2 1338
2 42922
2 51616
2 171196
2 159598
2 136432
2 84454
2 61806
2 136968
2 167442
2 150036
2 23974
2 10064
2 86342
2 146274
2 174318
2 130832
2 118838
2 180...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
99999
31503 13952 1 3
34333 31503 3 5
11184 34333 1 7
42839 11184 3 9
39415 42839 1 11
76798 39415 3 13
20588 76798 1 15
37623 20588 3 17
30774 37623 1 19
21798 30774 3 21
81338 21798 1 23
35924 81338 3 25
98098 35924 1 27
4388 98098 3 29
94082 4388 1 31...

result:

ok 

Test #10:

score: 0
Accepted
time: 5ms
memory: 4912kb

input:

ba73dbf9c7d5e5202834d6a500541c
10000
2 3124
2 3126
2 3128
2 3130
2 3132
2 3134
2 3136
2 3138
2 3140
2 3142
2 3144
2 3146
2 3148
2 3150
2 3152
2 3154
2 3156
2 3158
2 3160
2 3162
2 3164
2 3166
2 3168
2 3170
2 3172
2 3174
2 3176
2 3178
2 3180
2 3182
2 3184
2 3186
2 3188
2 3190
2 3192
2 3194
2 3196
2 31...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
9999
1 0 3 3125
2 1 1 3127
3 2 3 3129
4 3 1 3131
5 4 3 3133
6 5 1 3135
7 6 3 3137
8 7 1 3139
9 8 3 3141
10 9 1 3143
11 10 3 3145
12 11 1 3147
13 12 3 3149
14 13 1 3151
15 14 3 3153
16 15 1 3155
17 16 3 3157
18 17 1 3159
19 18 3 3161
20 19 1 3163
21 20 3 ...

result:

ok 

Test #11:

score: 0
Accepted
time: 26ms
memory: 10196kb

input:

ba73dbf9c7d5e5202834d6a500541c
53891
2 3566
2 3568
2 3570
2 3572
2 3574
2 3576
2 3578
2 3580
2 3582
2 3584
2 3586
2 3588
2 3590
2 3592
2 3594
2 3596
2 3598
2 3600
2 3602
2 3604
2 3606
2 3608
2 3610
2 3612
2 3614
2 3616
2 3618
2 3620
2 3622
2 3624
2 3626
2 3628
2 3630
2 3632
2 3634
2 3636
2 3638
2 36...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
53890
1 0 1 3567
2 1 3 3569
3 2 1 3571
4 3 3 3573
5 4 1 3575
6 5 3 3577
7 6 1 3579
8 7 3 3581
9 8 1 3583
10 9 3 3585
11 10 1 3587
12 11 3 3589
13 12 1 3591
14 13 3 3593
15 14 1 3595
16 15 3 3597
17 16 1 3599
18 17 3 3601
19 18 1 3603
20 19 3 3605
21 20 1...

result:

ok 

Test #12:

score: 0
Accepted
time: 3ms
memory: 5448kb

input:

ba73dbf9c7d5e5202834d6a500541c
14979
2 4954
2 4956
2 4958
2 4960
2 4962
2 4964
2 4966
2 4968
2 4970
2 4972
2 4974
2 4976
2 4978
2 4980
2 4982
2 4984
2 4986
2 4988
2 4990
2 4992
2 4994
2 4996
2 4998
2 5000
2 5002
2 5004
2 5006
2 5008
2 5010
2 5012
2 5014
2 5016
2 5018
2 5020
2 5022
2 5024
2 5026
2 50...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
14978
1 0 1 4955
2 1 3 4957
3 2 1 4959
4 3 3 4961
5 4 1 4963
6 5 3 4965
7 6 1 4967
8 7 3 4969
9 8 1 4971
10 9 3 4973
11 10 1 4975
12 11 3 4977
13 12 1 4979
14 13 3 4981
15 14 1 4983
16 15 3 4985
17 16 1 4987
18 17 3 4989
19 18 1 4991
20 19 3 4993
21 20 1...

result:

ok 

Test #13:

score: 0
Accepted
time: 18ms
memory: 7684kb

input:

ba73dbf9c7d5e5202834d6a500541c
44171
2 36500
2 36502
2 36504
2 36506
2 36508
2 36510
2 36512
2 36514
2 36516
2 36518
2 36520
2 36522
2 36524
2 36526
2 36528
2 36530
2 36532
2 36534
2 36536
2 36538
2 36540
2 36542
2 36544
2 36546
2 36548
2 36550
2 36552
2 36554
2 36556
2 36558
2 36560
2 36562
2 36564...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #14:

score: 0
Accepted
time: 1ms
memory: 4204kb

input:

ba73dbf9c7d5e5202834d6a500541c
1000
2 20406
2 20378
2 37840
2 37702
2 20448
2 37688
2 37780
2 20720
2 38256
2 20612
2 38050
2 20152
2 37880
2 20116
2 20030
2 20526
2 38324
2 20956
2 20852
2 20356
2 37668
2 20292
2 37648
2 20320
2 20078
2 38060
2 38014
2 37738
2 37878
2 20336
2 20472
2 20214
2 38340
...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #15:

score: 0
Accepted
time: 1ms
memory: 4072kb

input:

ba73dbf9c7d5e5202834d6a500541c
2000
2 19578
2 1754
2 1760
2 130946
2 164378
2 1038
2 20302
2 131788
2 131632
2 164392
2 19868
2 164924
2 131380
2 130972
2 131348
2 1070
2 131568
2 19492
2 19876
2 131606
2 1142
2 1588
2 1424
2 1726
2 131416
2 946
2 20158
2 19574
2 20106
2 1736
2 1186
2 19476
2 164256...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #16:

score: 0
Accepted
time: 63ms
memory: 16228kb

input:

ba73dbf9c7d5e5202834d6a500541c
100000
2 103034
2 75068
2 69976
2 84860
2 113488
2 156808
2 109250
2 119184
2 169250
2 182382
2 161594
2 169232
2 41046
2 87158
2 10192
2 32612
2 84228
2 49708
2 157912
2 160028
2 160234
2 167142
2 22010
2 37360
2 64100
2 113388
2 81460
2 52862
2 77902
2 155958
2 13330...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
99999
74843 82261 1 3
8766 74843 3 5
52706 8766 1 7
50332 52706 3 9
87757 50332 1 11
96100 87757 3 13
10691 96100 1 15
67720 10691 3 17
56430 67720 1 19
82376 56430 3 21
85275 82376 1 23
77807 85275 3 25
58592 77807 1 27
63926 58592 3 29
32662 63926 1 31...

result:

ok 

Subtask #2:

score: 10
Accepted

Dependency #1:

100%
Accepted

Test #17:

score: 10
Accepted
time: 0ms
memory: 3776kb

input:

ba73dbf9c7d5e5202834d6a500541c
4
4 4
2 4
4 2
2 2

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
3
1 3 1 3
2 3 3 3
0 2 5 3

result:

ok 

Test #18:

score: 0
Accepted
time: 0ms
memory: 4080kb

input:

ba73dbf9c7d5e5202834d6a500541c
4
4 4
2 6
2 4
4 6

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
3
1 2 3 5
0 2 3 3
3 1 3 7

result:

ok 

Test #19:

score: 0
Accepted
time: 0ms
memory: 3840kb

input:

ba73dbf9c7d5e5202834d6a500541c
6
4 6
2 4
2 2
4 2
4 4
2 6

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
5
1 2 1 3
5 1 3 5
3 2 3 3
4 3 5 3
0 5 3 7

result:

ok 

Test #20:

score: 0
Accepted
time: 0ms
memory: 3752kb

input:

ba73dbf9c7d5e5202834d6a500541c
8
4 2
2 6
4 8
2 4
4 6
2 2
4 4
2 8

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
7
3 5 1 3
1 3 3 5
7 1 1 7
0 5 3 3
6 0 5 3
4 1 3 7
2 4 5 7

result:

ok 

Test #21:

score: 0
Accepted
time: 0ms
memory: 3808kb

input:

ba73dbf9c7d5e5202834d6a500541c
8
2 10
2 4
4 4
4 8
2 2
2 8
4 10
4 2

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #22:

score: 0
Accepted
time: 0ms
memory: 3880kb

input:

ba73dbf9c7d5e5202834d6a500541c
4
2 200000
4 199998
2 199998
4 200000

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
3
0 2 1 199999
1 2 3 199999
3 1 5 199999

result:

ok 

Test #23:

score: 0
Accepted
time: 179ms
memory: 29176kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
4 177614
4 159166
2 99950
4 127824
2 158654
4 82678
2 76278
2 198694
4 142000
4 8782
2 49352
2 71260
2 194790
2 87904
2 70702
2 20966
4 161326
2 52586
2 18108
2 36098
2 160702
2 102232
2 67042
2 16712
2 141944
4 27120
4 43282
4 139388
2 144766
4 75542
4 5228
2 1...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199999
174493 87387 1 3
136703 174493 3 5
193595 136703 1 7
28659 193595 3 9
171330 28659 1 11
126146 171330 3 13
10708 126146 1 15
158430 10708 3 17
139479 158430 1 19
48968 139479 3 21
29851 48968 1 23
160919 29851 3 25
111808 160919 1 27
144510 111808...

result:

ok 

Test #24:

score: 0
Accepted
time: 0ms
memory: 3804kb

input:

ba73dbf9c7d5e5202834d6a500541c
8
2 183570
4 183570
4 183572
2 183572
2 183578
4 183574
2 183576
4 183576

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
7
3 0 1 183571
4 6 3 183577
1 0 3 183571
2 1 5 183571
5 2 3 183573
7 6 3 183575
7 5 5 183575

result:

ok 

Test #25:

score: 0
Accepted
time: 1ms
memory: 3972kb

input:

ba73dbf9c7d5e5202834d6a500541c
1173
2 186526
2 185928
4 185842
4 185780
4 185692
4 186148
4 186016
2 186236
4 185948
4 185626
2 186332
4 186206
2 186480
4 186154
2 186542
2 186504
2 186230
2 186654
2 185902
4 186762
4 186074
2 185804
4 186262
4 185834
2 186224
4 186544
4 185604
2 186300
2 186042
4 1...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
1172
745 1021 1 185599
720 745 3 185601
1155 720 1 185603
187 1155 3 185605
819 187 1 185607
979 819 3 185609
1148 979 1 185611
356 1148 3 185613
351 356 1 185615
982 351 3 185617
845 982 1 185619
772 845 3 185621
189 772 1 185623
44 189 3 185625
93 44 1...

result:

ok 

Test #26:

score: 0
Accepted
time: 2ms
memory: 4144kb

input:

ba73dbf9c7d5e5202834d6a500541c
3000
2 109002
2 197108
4 198220
4 197488
4 108286
2 109006
2 197954
2 108586
4 197416
4 197132
4 197374
4 197448
4 197898
2 108330
2 197992
4 109556
2 197598
4 108114
4 109046
2 197128
2 108454
2 108892
2 108110
4 108622
4 197756
2 197924
2 109102
2 198050
2 108460
2 1...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #27:

score: 0
Accepted
time: 2ms
memory: 4240kb

input:

ba73dbf9c7d5e5202834d6a500541c
4000
2 140462
2 140478
2 140596
2 4466
2 172072
2 140272
4 64560
2 64340
4 172244
4 64230
2 57126
4 158866
2 140482
2 64878
4 159028
4 140276
2 56814
2 4364
2 64356
4 64834
4 57096
2 3922
2 172124
4 64542
2 159218
4 140762
2 172112
4 140320
4 56964
4 158988
4 140398
2 ...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #28:

score: 0
Accepted
time: 61ms
memory: 13660kb

input:

ba73dbf9c7d5e5202834d6a500541c
80000
2 77930
2 34884
4 40062
2 34158
2 6130
4 32544
2 51290
2 50478
4 70072
4 69616
2 75800
4 5656
2 4510
2 77766
2 68358
2 42792
4 52374
4 48488
2 75616
2 46682
4 45386
4 28842
2 12918
4 8206
2 20568
2 70466
2 5562
4 61202
2 65046
4 71854
4 9510
2 45910
2 14066
4 608...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
79999
33964 35158 1 3
64060 33964 3 5
3654 64060 1 7
52126 3654 3 9
4938 52126 1 11
6988 4938 3 13
62140 6988 1 15
32239 62140 3 17
39082 32239 1 19
12710 39082 3 21
12916 12710 1 23
40911 12916 3 25
47784 40911 1 27
46905 47784 3 29
18772 46905 1 31
631...

result:

ok 

Test #29:

score: 0
Accepted
time: 83ms
memory: 18824kb

input:

ba73dbf9c7d5e5202834d6a500541c
120000
2 107882
4 86012
4 127996
2 176868
2 178032
4 122930
4 178436
4 160026
4 152606
2 160512
2 84884
2 161726
4 190586
2 149048
2 131608
2 80390
2 155598
4 84696
2 182976
4 158014
4 173998
2 159392
4 128890
4 119618
4 196866
2 97962
4 188404
2 133252
4 166790
4 1593...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
119999
71671 3416 3 80001
46985 71671 1 80003
89055 46985 3 80005
79357 89055 1 80007
71793 79357 3 80009
57759 71793 1 80011
20411 57759 3 80013
31331 20411 1 80015
108465 31331 3 80017
710 108465 1 80019
119147 710 3 80021
79407 119147 1 80023
109598 7...

result:

ok 

Test #30:

score: 0
Accepted
time: 138ms
memory: 24188kb

input:

ba73dbf9c7d5e5202834d6a500541c
160000
2 52858
4 164410
2 75528
2 52886
4 109942
4 170460
2 186328
2 124554
4 197478
2 192650
4 78512
4 153868
4 155132
2 162316
4 122256
2 166830
2 163464
2 129030
4 191906
4 68290
4 64288
4 152134
4 79376
2 125460
4 51150
2 106656
4 139088
2 136352
2 52620
4 95892
2 ...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
159999
159895 140728 1 40003
116824 159895 3 40005
26002 116824 1 40007
10395 26002 3 40009
104968 10395 1 40011
22190 104968 3 40013
22827 22190 1 40015
14103 22827 3 40017
95800 14103 1 40019
96808 95800 3 40021
65716 96808 1 40023
133856 65716 3 40025...

result:

ok 

Test #31:

score: 0
Accepted
time: 159ms
memory: 29296kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
4 159176
4 173814
4 148140
4 192932
2 10458
4 82176
2 192792
4 58608
4 152072
2 179396
4 65044
2 43890
2 6200
4 72634
2 27580
2 178602
2 61556
4 157146
2 133400
4 126376
4 18694
2 195536
4 159494
4 84034
2 33830
4 92734
2 6522
4 109768
2 101402
4 6176
4 53030
2 ...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199999
157693 49531 1 3
51820 157693 3 5
22149 51820 1 7
90756 22149 3 9
148747 90756 1 11
109158 148747 3 13
192499 109158 1 15
123414 192499 3 17
35684 123414 1 19
113244 35684 3 21
18156 113244 1 23
88733 18156 3 25
91156 88733 1 27
154952 91156 3 29
...

result:

ok 

Test #32:

score: 0
Accepted
time: 0ms
memory: 4068kb

input:

ba73dbf9c7d5e5202834d6a500541c
2
4 2
4 4

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
1
1 0 5 3

result:

ok 

Test #33:

score: 0
Accepted
time: 0ms
memory: 4116kb

input:

ba73dbf9c7d5e5202834d6a500541c
2
2 2
4 2

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
1
1 0 3 3

result:

ok 

Test #34:

score: 0
Accepted
time: 0ms
memory: 3824kb

input:

ba73dbf9c7d5e5202834d6a500541c
2
2 4
4 4

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
1
1 0 3 3

result:

ok 

Test #35:

score: 0
Accepted
time: 0ms
memory: 3804kb

input:

ba73dbf9c7d5e5202834d6a500541c
2
2 2
4 4

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #36:

score: 0
Accepted
time: 0ms
memory: 3840kb

input:

ba73dbf9c7d5e5202834d6a500541c
2
2 4
4 2

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #37:

score: 0
Accepted
time: 0ms
memory: 4116kb

input:

ba73dbf9c7d5e5202834d6a500541c
3
2 2
2 4
4 2

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
2
1 0 1 3
2 0 3 3

result:

ok 

Test #38:

score: 0
Accepted
time: 0ms
memory: 3812kb

input:

ba73dbf9c7d5e5202834d6a500541c
3
2 2
2 4
4 4

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
2
1 0 1 3
2 1 3 3

result:

ok 

Test #39:

score: 0
Accepted
time: 0ms
memory: 3816kb

input:

ba73dbf9c7d5e5202834d6a500541c
3
2 2
4 2
4 4

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
2
1 0 3 3
2 1 5 3

result:

ok 

Test #40:

score: 0
Accepted
time: 0ms
memory: 3804kb

input:

ba73dbf9c7d5e5202834d6a500541c
3
2 4
4 2
4 4

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
2
2 0 3 3
2 1 5 3

result:

ok 

Test #41:

score: 0
Accepted
time: 0ms
memory: 3840kb

input:

ba73dbf9c7d5e5202834d6a500541c
3
2 4
4 2
4 6

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #42:

score: 0
Accepted
time: 0ms
memory: 4100kb

input:

ba73dbf9c7d5e5202834d6a500541c
3
2 200000
2 199998
4 200000

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
2
0 1 1 199999
2 0 3 199999

result:

ok 

Test #43:

score: 0
Accepted
time: 1ms
memory: 4088kb

input:

ba73dbf9c7d5e5202834d6a500541c
2000
2 66072
2 15600
2 65278
2 65372
2 15154
2 64698
4 15472
4 15336
4 15714
4 65714
2 65516
4 65552
2 64890
2 15174
2 65674
2 14732
2 15150
4 65768
2 15672
2 14610
4 15530
2 65776
2 15370
4 65724
2 15308
2 15412
4 15712
4 14620
4 14600
2 15404
4 15918
2 14858
2 15488
...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #44:

score: 0
Accepted
time: 2ms
memory: 4436kb

input:

ba73dbf9c7d5e5202834d6a500541c
3000
2 111548
2 111040
4 70070
2 177612
2 110868
2 111368
4 17940
2 111432
2 59736
2 177494
4 110958
2 70064
2 59920
2 70092
4 177672
2 59336
4 69988
4 111040
2 59840
4 18638
4 18042
2 111192
2 177526
4 69992
4 177776
4 69676
4 177824
4 111128
4 111278
4 59162
2 111592...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #45:

score: 0
Accepted
time: 66ms
memory: 16136kb

input:

ba73dbf9c7d5e5202834d6a500541c
100000
4 169676
2 166424
4 184362
4 189372
4 92358
4 163106
4 106516
4 84160
2 80238
2 189392
4 195840
2 118396
4 94344
4 188728
2 189284
2 164532
2 140524
2 126720
4 182624
4 131538
2 172512
2 163134
2 123156
4 137156
4 168310
2 140776
4 181764
2 92658
2 124148
4 1125...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
99999
72659 82931 3 62141
38445 72659 1 62143
47840 38445 3 62145
6134 47840 1 62147
32305 99528 3 62165
34397 32305 1 62167
95403 34397 3 62169
2566 80426 1 62175
62247 2566 3 62177
22852 62247 1 62179
7378 22852 3 62181
70529 7378 1 62183
73482 70529 3...

result:

ok 

Test #46:

score: 0
Accepted
time: 98ms
memory: 22296kb

input:

ba73dbf9c7d5e5202834d6a500541c
145093
2 166114
2 57160
2 100318
2 183710
2 157582
4 87300
2 108292
4 26942
4 152146
4 67878
2 189520
2 105504
4 182488
4 20028
4 149088
2 27528
4 54250
2 100720
2 62956
4 60756
2 107208
4 156884
2 184558
2 79524
4 152584
4 101220
2 8320
4 149952
4 2512
4 63280
2 14975...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
145092
18304 59075 1 3
51449 106115 1 19
129446 51449 3 21
9276 142224 1 35
130865 9276 3 37
80199 130865 1 39
79829 80199 3 41
96330 79829 1 43
42746 96330 3 45
110442 42746 1 47
40308 110442 3 49
51876 40308 1 51
109530 51876 3 53
123909 109530 1 55
37...

result:

ok 

Test #47:

score: 0
Accepted
time: 116ms
memory: 22128kb

input:

ba73dbf9c7d5e5202834d6a500541c
145075
2 155250
2 136442
2 94908
2 158406
4 57086
2 97650
4 48200
2 12782
2 185128
2 197282
4 27270
2 122262
4 66214
2 31156
2 150590
2 12294
4 1562
4 94584
2 23458
4 157278
4 33026
2 191138
4 147538
2 8652
2 108482
4 67498
4 157020
2 13190
2 30028
4 77576
4 44258
4 16...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
145074
55747 42574 1 3
96449 55747 3 5
120955 96449 1 7
109902 120955 3 9
91793 109902 1 11
86278 62949 3 25
118586 86278 1 27
28978 118586 3 29
99732 28978 1 31
3045 99732 3 33
23125 58503 1 47
122563 23125 3 49
32005 122563 1 51
39763 32005 3 53
40155 ...

result:

ok 

Subtask #3:

score: 15
Accepted

Dependency #2:

100%
Accepted

Test #48:

score: 15
Accepted
time: 0ms
memory: 3772kb

input:

ba73dbf9c7d5e5202834d6a500541c
4
6 2
4 2
6 4
4 4

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
3
3 1 5 3
0 1 5 1
2 3 5 5

result:

ok 

Test #49:

score: 0
Accepted
time: 0ms
memory: 3816kb

input:

ba73dbf9c7d5e5202834d6a500541c
4
6 6
4 4
6 4
4 6

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
3
3 1 3 5
2 1 5 5
0 2 7 5

result:

ok 

Test #50:

score: 0
Accepted
time: 0ms
memory: 3884kb

input:

ba73dbf9c7d5e5202834d6a500541c
6
6 2
2 2
6 4
2 4
4 2
4 4

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
5
3 1 1 3
4 1 3 3
5 4 5 3
0 4 5 1
2 5 5 5

result:

ok 

Test #51:

score: 0
Accepted
time: 0ms
memory: 4064kb

input:

ba73dbf9c7d5e5202834d6a500541c
7
6 4
4 4
2 2
4 6
4 2
2 4
6 6

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
6
5 2 1 3
4 2 3 3
1 4 5 3
3 1 3 5
0 1 5 5
6 0 7 5

result:

ok 

Test #52:

score: 0
Accepted
time: 0ms
memory: 4112kb

input:

ba73dbf9c7d5e5202834d6a500541c
8
4 2
2 2
6 8
4 6
4 8
4 4
6 6
2 4

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
7
7 1 1 3
0 1 3 3
5 0 5 3
3 5 3 5
4 3 5 7
6 3 5 5
2 4 5 9

result:

ok 

Test #53:

score: 0
Accepted
time: 0ms
memory: 3816kb

input:

ba73dbf9c7d5e5202834d6a500541c
7
2 4
4 4
6 2
4 2
2 6
4 6
6 4

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
6
4 0 3 5
1 0 3 3
1 3 5 3
5 4 3 7
2 3 5 1
6 1 5 5

result:

ok 

Test #54:

score: 0
Accepted
time: 0ms
memory: 3816kb

input:

ba73dbf9c7d5e5202834d6a500541c
8
4 2
4 8
4 6
6 2
2 6
4 4
2 8
6 4

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
7
6 4 1 7
5 0 5 3
2 4 3 7
2 5 3 5
1 2 5 7
3 0 5 1
7 5 5 5

result:

ok 

Test #55:

score: 0
Accepted
time: 203ms
memory: 29312kb

input:

ba73dbf9c7d5e5202834d6a500541c
199998
6 95048
2 124620
6 92330
2 87562
4 64650
2 76818
6 94884
6 106050
2 87068
2 36890
4 118972
4 58310
2 59538
6 30350
4 14668
2 71226
4 83464
6 1438
2 63320
6 130540
6 20760
2 11738
6 121604
6 69304
2 35164
4 1904
6 63076
4 116444
6 96292
2 5438
6 16630
4 14906
6 8...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199997
126224 180833 1 3
83881 126224 3 5
138308 83881 1 7
113233 138308 3 9
79947 113233 1 11
150235 79947 3 13
39002 150235 1 15
33628 39002 3 17
40658 33628 1 19
188337 40658 3 21
123479 188337 1 23
93771 123479 3 25
15412 93771 1 27
186208 15412 3 29...

result:

ok 

Test #56:

score: 0
Accepted
time: 0ms
memory: 3836kb

input:

ba73dbf9c7d5e5202834d6a500541c
10
6 183572
4 183572
4 183574
2 183576
6 183576
4 183576
2 183578
6 183570
2 183572
4 183570

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
9
6 3 3 183577
1 8 3 183571
1 9 5 183571
2 1 3 183573
5 3 3 183575
5 2 5 183575
7 9 5 183569
0 1 5 183573
4 5 5 183577

result:

ok 

Test #57:

score: 0
Accepted
time: 1ms
memory: 4016kb

input:

ba73dbf9c7d5e5202834d6a500541c
1758
2 186528
2 185930
6 186026
4 185782
4 185694
4 186150
4 186018
2 186238
4 185950
4 185628
2 186334
6 185770
2 186482
4 186156
6 185842
6 186334
2 186232
2 186656
2 185904
4 186764
4 186076
2 185806
6 185650
4 185836
2 186226
4 186546
4 185606
2 186302
2 186044
4 1...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
1757
1329 1328 3 185601
720 1329 1 185603
1155 720 3 185605
1553 1155 1 185607
819 1553 3 185609
979 819 1 185611
1148 979 3 185613
356 1148 1 185615
1272 356 3 185617
1657 1272 1 185619
845 1657 3 185621
1371 845 1 185623
189 1371 3 185625
1188 189 1 18...

result:

ok 

Test #58:

score: 0
Accepted
time: 4ms
memory: 4712kb

input:

ba73dbf9c7d5e5202834d6a500541c
6000
4 91732
4 90280
6 89008
2 91010
6 91888
4 90450
6 90196
6 90416
4 90156
6 91718
6 88708
6 89872
2 91232
2 91566
2 90018
2 89016
4 90382
2 88900
6 91918
4 89424
4 88672
2 89576
4 90656
6 88592
2 91610
2 90672
4 89684
2 91674
2 90820
2 91412
6 90820
2 91702
2 89464
...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
5999
644 5513 1 88155
3966 644 3 88157
3598 3966 1 88159
1073 3598 3 88161
889 1073 1 88163
3000 889 3 88165
1786 3000 1 88167
2486 1786 3 88169
4134 2486 1 88171
5747 4134 3 88173
5534 5747 1 88175
1708 5534 3 88177
485 1708 1 88179
2516 485 3 88181
572...

result:

ok 

Test #59:

score: 0
Accepted
time: 5ms
memory: 5052kb

input:

ba73dbf9c7d5e5202834d6a500541c
10000
2 85892
4 103848
4 55116
2 75724
6 178108
2 178416
6 104794
6 104736
6 54334
4 76036
4 86888
4 178912
4 86578
2 85994
6 74754
2 178168
4 103636
6 179140
4 75786
4 86246
6 85520
4 178886
6 104314
6 104818
6 74798
2 104170
4 103618
2 179026
2 178698
6 75788
2 54676...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #60:

score: 0
Accepted
time: 69ms
memory: 16240kb

input:

ba73dbf9c7d5e5202834d6a500541c
100000
6 4304
4 17988
4 43862
6 2282
6 37606
2 66400
2 11222
2 26524
2 66522
6 29288
2 54226
2 45692
4 66428
4 22820
6 65310
2 50814
2 8860
6 48664
2 40386
4 54982
2 23044
4 31694
4 6372
6 38602
2 9752
4 32596
6 53798
4 49586
2 24848
6 23096
6 40944
2 48824
6 16910
6 6...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
99999
97931 52352 1 3
38222 97931 3 5
86929 38222 1 7
80656 86929 3 9
17742 80656 1 11
82482 17742 3 13
7410 82482 1 15
5196 7410 3 17
30562 5196 1 19
38109 30562 3 21
84182 38109 1 23
23046 84182 3 25
79889 23046 1 27
93235 79889 3 29
35346 93235 1 31
2...

result:

ok 

Test #61:

score: 0
Accepted
time: 98ms
memory: 20756kb

input:

ba73dbf9c7d5e5202834d6a500541c
135000
4 80108
4 55532
6 15996
2 55940
6 40018
4 78816
6 35830
6 17658
2 86938
4 83772
2 72238
6 5506
6 61968
2 58268
6 43876
2 23076
4 27904
4 89178
6 35424
6 35176
4 89584
2 78888
6 7010
6 12638
2 42660
4 44862
6 60734
4 79580
2 74128
2 18674
2 19372
6 73860
6 54040
...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
135000
131078 65274 1 3
118658 131078 3 5
49021 118658 1 7
33463 49021 3 9
20516 33463 1 11
122235 20516 3 13
26450 122235 1 15
127170 26450 3 17
13121 127170 1 19
85230 13121 3 21
19924 85230 1 23
46490 19924 3 25
40389 46490 1 27
125839 40389 3 29
1102...

result:

ok 

Test #62:

score: 0
Accepted
time: 126ms
memory: 24720kb

input:

ba73dbf9c7d5e5202834d6a500541c
165000
6 172066
4 138088
2 134464
6 123142
4 170926
2 117864
2 185690
6 179060
6 187756
6 91450
4 92788
6 97334
6 134770
6 139588
2 121126
4 136832
4 197742
6 100388
6 91908
2 109104
6 106976
2 107942
4 142116
4 115082
2 113344
6 172824
6 110544
6 112464
4 149004
6 175...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
164999
125160 70411 1 89295
65759 125160 3 89297
76006 65759 1 89299
114310 76006 3 89301
138974 114310 1 89303
43586 138974 3 89305
83733 43586 1 89307
40585 83733 3 89309
31473 40585 1 89311
15208 31473 3 89313
100187 15208 1 89315
105652 100187 3 8931...

result:

ok 

Test #63:

score: 0
Accepted
time: 157ms
memory: 29084kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
6 86562
2 132164
2 161960
4 166102
4 94656
6 164844
6 45856
2 99300
4 77424
6 76788
6 162328
4 78372
4 103764
4 140704
6 127746
4 169652
4 96084
4 49796
6 172202
6 104484
4 167568
4 176392
6 129104
4 49314
4 56440
6 102854
4 59986
6 118008
6 145490
6 74630
4 788...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
200000
179200 99824 1 43451
66640 179200 3 43453
76512 66640 1 43455
88037 76512 3 43457
19055 88037 1 43459
33329 19055 3 43461
87044 33329 1 43463
42098 87044 3 43465
107409 42098 1 43467
81999 107409 3 43469
91040 81999 1 43471
141547 91040 3 43473
12...

result:

ok 

Test #64:

score: 0
Accepted
time: 0ms
memory: 3844kb

input:

ba73dbf9c7d5e5202834d6a500541c
2
2 2
6 2

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #65:

score: 0
Accepted
time: 0ms
memory: 3748kb

input:

ba73dbf9c7d5e5202834d6a500541c
3
2 2
4 2
6 2

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
2
1 0 3 3
2 1 5 1

result:

ok 

Test #66:

score: 0
Accepted
time: 0ms
memory: 3820kb

input:

ba73dbf9c7d5e5202834d6a500541c
4
2 4
4 2
4 6
6 4

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #67:

score: 0
Accepted
time: 169ms
memory: 29252kb

input:

ba73dbf9c7d5e5202834d6a500541c
199999
2 115866
2 154134
2 3960
6 59348
6 111954
6 53896
2 15912
6 199914
2 163078
6 49868
2 137758
2 48042
2 69990
2 70364
2 133946
2 34468
2 130622
2 15364
6 196702
6 46780
2 128410
6 18592
6 4278
6 133068
6 142246
6 26900
6 43072
2 122198
6 124978
2 159380
2 85902
2...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199998
9442 4082 3 5
102483 9442 1 7
107659 102483 3 9
89890 107659 1 11
20566 89890 3 13
56149 20566 1 15
167521 56149 3 17
176283 167521 1 19
169856 176283 3 21
29847 169856 1 23
71299 29847 3 25
65460 71299 1 27
189564 65460 3 29
96627 189564 1 31
610...

result:

ok 

Test #68:

score: 0
Accepted
time: 134ms
memory: 29312kb

input:

ba73dbf9c7d5e5202834d6a500541c
199999
2 90630
6 168226
6 175968
2 130260
2 126026
6 119368
6 52682
6 64202
6 70518
2 170700
2 21860
2 178410
2 76192
2 38016
6 199270
6 23782
2 192152
2 106458
2 80892
6 163314
2 106656
6 49920
6 157054
2 136682
2 55556
2 79540
2 106102
6 88696
6 7678
2 52468
2 172280...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199998
43994 7507 3 5
37535 43994 1 7
37030 37535 3 9
65598 37030 1 11
15170 65598 3 13
150001 15170 1 15
184108 150001 3 17
39733 184108 1 19
50752 39733 3 21
182688 50752 1 23
72389 182688 3 25
135632 72389 1 27
137510 135632 3 29
176496 137510 1 31
80...

result:

ok 

Test #69:

score: 0
Accepted
time: 136ms
memory: 29224kb

input:

ba73dbf9c7d5e5202834d6a500541c
199005
6 34654
2 127948
6 190536
6 15644
2 120332
6 178698
6 3046
6 62338
6 12832
6 2824
2 48818
2 44152
6 71348
6 58418
2 151464
6 152242
2 111332
6 138662
6 146622
2 110626
6 6934
2 39908
2 108378
6 21936
6 164090
6 15418
2 36712
6 81888
6 146740
6 199770
6 158344
6 ...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199004
139409 51358 1 3
52907 139409 3 5
162481 52907 1 7
175750 162481 3 9
1419 175750 1 11
138968 1419 3 13
128763 138968 1 15
34735 128763 3 17
129283 34735 1 19
163314 129283 3 21
14611 163314 1 23
27524 14611 3 25
159682 27524 1 27
86568 159682 3 29...

result:

ok 

Test #70:

score: 0
Accepted
time: 2ms
memory: 4168kb

input:

ba73dbf9c7d5e5202834d6a500541c
4000
6 103928
6 191558
6 192994
6 104234
6 104228
6 192602
6 191276
6 192742
6 102730
6 102798
2 102814
2 191852
4 193088
2 192554
2 191866
6 192580
2 102534
2 104064
4 102812
4 103152
4 104060
6 104430
4 192606
6 192594
6 191350
2 103266
2 191778
2 191878
6 192648
2 1...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #71:

score: 0
Accepted
time: 2ms
memory: 4852kb

input:

ba73dbf9c7d5e5202834d6a500541c
8000
6 141670
6 184016
6 5642
4 184462
4 7172
4 185262
2 127694
6 184208
2 127008
6 5812
2 141736
6 184706
2 141928
6 141792
2 6068
2 7032
6 142914
2 127674
6 184572
2 143142
2 127594
2 128398
6 5628
6 5856
4 143130
6 6290
4 184104
4 142184
6 141864
4 7106
4 127108
2 1...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #72:

score: 0
Accepted
time: 74ms
memory: 16084kb

input:

ba73dbf9c7d5e5202834d6a500541c
100000
6 42836
2 5972
2 35490
6 39484
4 28614
2 35194
2 2202
4 80528
4 30536
4 90140
6 92102
6 54632
6 34240
4 84986
4 37206
4 64602
2 43952
6 49232
4 9034
2 67488
4 54660
2 16758
4 25776
2 89570
2 39854
2 16688
2 71262
6 79192
2 46376
2 47100
4 63702
2 10200
6 30688
2...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
99999
72670 11289 1 3
93783 26634 3 9
3737 93783 1 11
7870 3737 3 13
50498 7870 1 15
63152 50498 3 17
78191 63152 1 19
32456 87730 1 27
40645 59812 3 33
350 40645 1 35
87907 60556 3 45
36499 87907 1 47
25032 36499 3 49
71733 25032 1 51
37097 71733 3 53
6...

result:

ok 

Test #73:

score: 0
Accepted
time: 123ms
memory: 22816kb

input:

ba73dbf9c7d5e5202834d6a500541c
150000
6 78236
4 79810
4 91776
2 64708
4 102410
4 70544
2 103230
6 172210
4 115452
6 112350
4 54632
4 94094
2 70820
2 136734
6 59966
6 63288
6 158212
4 183616
2 142072
6 84484
2 184338
4 197862
2 96278
6 120562
2 66086
4 97884
6 115196
2 176864
6 138738
2 173644
6 1435...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
149999
115958 137256 3 53985
140016 115958 1 53987
128730 140016 3 53989
27037 128730 1 53991
124258 27037 3 53993
2878 124258 1 53995
82725 2878 3 53997
78986 82725 1 53999
88109 78986 3 54001
94653 41895 1 54007
122732 94653 3 54009
113010 103629 1 540...

result:

ok 

Test #74:

score: 0
Accepted
time: 179ms
memory: 29252kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
4 87744
2 105360
6 34704
2 171792
4 20694
6 25286
4 111544
6 25068
6 64900
2 15046
6 42920
2 56676
6 73896
6 62404
4 12270
4 170618
4 53634
2 178476
4 16464
6 188544
6 76360
4 15978
4 121632
4 38548
6 17998
2 106472
2 152492
2 70066
2 137378
4 55310
4 110092
2 9...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199999
177260 40274 3 5089
64652 177260 1 5091
196585 64652 3 5093
132257 196585 1 5095
188493 132257 3 5097
16507 157516 1 5111
125764 16507 3 5113
190847 22378 1 5119
126556 190847 3 5121
110229 126556 1 5123
138447 110229 3 5125
150326 138447 1 5127
5...

result:

ok 

Test #75:

score: 0
Accepted
time: 156ms
memory: 30964kb

input:

ba73dbf9c7d5e5202834d6a500541c
199998
2 4288
6 133692
4 30182
2 60312
4 47290
6 120388
2 130714
6 53616
4 91442
6 58218
6 71180
2 104478
6 57206
2 86644
2 93842
4 10502
2 92832
2 136286
6 157256
4 13610
4 148186
4 43542
2 18784
4 103326
4 15658
6 60290
2 23282
6 85690
6 148178
2 59640
2 84698
2 7120...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
239996
100317 198668 1 3
197689 100317 3 5
25068 197689 1 7
184499 25068 3 9
66839 184499 1 11
152416 66839 3 13
48180 152416 1 15
166469 48180 3 17
161745 166469 1 19
82068 161745 3 21
95026 82068 1 23
103873 95026 3 25
86419 103873 1 27
197464 86419 3 ...

result:

ok 

Test #76:

score: 0
Accepted
time: 138ms
memory: 29180kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
2 129082
6 72610
6 194734
2 112750
6 82944
6 30138
6 15770
6 183396
2 154782
2 193764
2 194778
2 166484
2 193426
2 188262
2 145992
2 174192
6 123650
6 7554
2 119606
6 29826
6 67290
6 85018
2 126458
6 98598
6 55728
2 19416
2 57930
6 51516
6 193690
6 149696
6 6076...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
200000
92133 191221 3 5
192115 92133 1 7
31300 192115 3 9
177610 31300 1 11
98086 177610 3 13
65615 98086 1 15
108776 65615 3 17
2771 108776 1 19
116999 2771 3 21
175902 116999 1 23
63853 175902 3 25
77561 63853 1 27
153186 77561 3 29
107371 153186 1 31
...

result:

ok 

Test #77:

score: 0
Accepted
time: 3ms
memory: 4368kb

input:

ba73dbf9c7d5e5202834d6a500541c
5000
4 156154
4 156368
2 196426
6 156928
6 196174
6 196750
4 197822
4 157596
6 197540
6 156240
6 157920
4 156878
6 158036
4 157232
4 196778
6 197648
6 198212
2 196894
2 197104
6 157446
4 158124
4 157874
4 158094
2 156192
2 157168
4 156104
6 156272
2 156800
6 156712
4 1...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #78:

score: 0
Accepted
time: 4ms
memory: 4928kb

input:

ba73dbf9c7d5e5202834d6a500541c
9000
4 170344
4 169674
2 32968
6 32518
6 169052
6 32668
6 167364
6 170438
2 113068
6 113654
6 169248
2 73998
2 113724
4 168816
6 114556
6 73758
6 169778
2 114014
4 168766
6 32746
4 33158
2 168994
6 113252
2 167962
2 74106
6 74430
2 33446
6 113268
4 167946
2 169548
6 16...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #79:

score: 0
Accepted
time: 72ms
memory: 16676kb

input:

ba73dbf9c7d5e5202834d6a500541c
100000
6 66826
6 39954
2 73296
2 75802
2 4612
4 61128
6 31252
6 31446
4 40332
2 9172
4 71820
6 84754
4 21092
6 61782
6 64606
6 51960
2 83080
2 19798
2 58636
2 87918
2 47708
4 11814
4 23664
2 50458
6 40382
2 63084
4 9814
2 72088
2 50462
4 50442
4 77972
6 1870
2 30758
2 ...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
110436
22753 83787 3 5
75514 22753 1 7
55327 75514 3 9
73589 55327 1 11
51899 73589 3 13
9215 16121 1 19
13269 9215 3 21
11760 13269 1 23
20765 11760 3 25
12291 20765 1 27
55914 12291 3 29
16262 55914 1 31
38525 16262 3 33
91400 38525 1 35
71068 63778 1 ...

result:

ok 

Test #80:

score: 0
Accepted
time: 113ms
memory: 23384kb

input:

ba73dbf9c7d5e5202834d6a500541c
150000
2 174028
4 144676
2 118168
6 186418
4 106026
2 169150
4 190940
2 67752
2 196266
4 96144
2 124170
2 82348
4 155326
6 144152
6 108674
2 127704
6 147302
2 94080
6 88216
4 121306
6 148108
2 73550
4 122830
6 112894
6 98012
2 195176
2 82024
6 152408
2 72600
4 80088
4 ...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
165896
81133 31501 1 65623
137007 81133 3 65625
852 137007 1 65627
64042 852 3 65629
126216 64042 1 65631
33849 126216 3 65633
84275 33849 1 65635
778 84275 3 65637
74480 778 1 65639
902 74480 3 65641
66244 902 1 65643
103607 66244 3 65645
141656 103607 ...

result:

ok 

Test #81:

score: 0
Accepted
time: 155ms
memory: 30372kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
2 52140
2 66722
6 68358
4 184262
6 44806
6 104740
4 58058
6 25488
6 29594
4 52850
6 130906
6 55904
2 160352
6 116632
4 52134
6 137734
2 180134
2 106380
6 114282
2 194328
6 79594
6 184894
2 42778
2 102758
6 144008
6 50926
6 119278
4 128810
4 21484
2 134002
6 1561...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
221171
17366 15795 1 20639
40322 17366 3 20641
157810 40322 1 20643
183397 157810 3 20645
17198 183397 1 20647
26810 134108 3 20653
55794 26810 1 20655
140779 55794 3 20657
186106 140779 1 20659
50156 186106 3 20661
96285 3075 1 20667
132056 96285 3 2066...

result:

ok 

Subtask #4:

score: 20
Accepted

Test #82:

score: 20
Accepted
time: 0ms
memory: 4100kb

input:

ba73dbf9c7d5e5202834d6a500541c
3
200000 2
200000 4
199998 2

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
2
0 2 199999 3
1 0 200001 3

result:

ok 

Test #83:

score: 0
Accepted
time: 0ms
memory: 3804kb

input:

ba73dbf9c7d5e5202834d6a500541c
3
200000 200000
200000 199998
199998 200000

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
2
0 2 199999 199999
0 1 200001 199999

result:

ok 

Test #84:

score: 0
Accepted
time: 0ms
memory: 3812kb

input:

ba73dbf9c7d5e5202834d6a500541c
12
2 2
2 4
4 2
2 200000
2 199998
4 200000
200000 2
200000 4
199998 2
200000 200000
200000 199998
199998 200000

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #85:

score: 0
Accepted
time: 167ms
memory: 29124kb

input:

ba73dbf9c7d5e5202834d6a500541c
199999
195232 4772
192370 7632
64282 135722
174444 25558
54846 145156
70170 129832
196228 3774
23234 176768
186862 13140
22458 177546
18158 181846
144902 55100
109692 90310
154220 45782
180406 19598
176744 23260
69098 130906
83308 116694
728 199274
143272 56730
17012 1...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199998
42656 177170 3 199999
42656 64976 5 199999
70454 64976 5 199997
70454 99626 7 199997
722 99626 7 199995
722 108551 9 199995
76300 108551 9 199993
76300 32478 11 199993
81828 32478 11 199991
81828 30605 13 199991
162100 30605 13 199989
162100 20136...

result:

ok 

Test #86:

score: 0
Accepted
time: 176ms
memory: 29320kb

input:

ba73dbf9c7d5e5202834d6a500541c
199997
56858 56864
1456 1462
51406 51410
89266 89272
53562 53556
80164 80158
13970 13966
41960 41966
48338 48342
98766 98772
82904 82898
38168 38172
28780 28774
38142 38146
16616 16612
15258 15262
69676 69672
85410 85416
59306 59310
712 718
6144 6140
61280 61286
28928 ...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199996
165294 113948 3 5
18854 165294 5 7
23669 18854 3 9
162590 113948 5 5
63414 23669 5 9
8148 63414 5 11
96089 162590 7 3
152046 8148 7 11
52407 152046 7 13
34265 96089 9 5
56476 34265 11 5
54259 52407 9 13
190093 54259 9 15
120029 56476 11 7
14774 12...

result:

ok 

Test #87:

score: 0
Accepted
time: 166ms
memory: 29108kb

input:

ba73dbf9c7d5e5202834d6a500541c
199997
65538 34474
61104 38910
57364 42638
29768 70236
50488 49524
91868 8146
42764 57238
16096 83906
17718 82294
91644 8368
90818 9186
83908 16096
97246 2756
68350 31652
53514 46498
10854 89158
64174 35838
62258 37746
36734 63280
76516 23496
19968 80036
2764 97240
559...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199996
165411 19497 5 99999
176578 19497 5 99997
176578 178153 7 99997
56430 178153 7 99995
56430 109685 9 99995
83292 109685 9 99993
83292 114285 11 99993
197976 189718 9 100005
197976 85709 9 100003
115128 114285 11 99991
115128 68721 13 99991
195804 8...

result:

ok 

Test #88:

score: 0
Accepted
time: 146ms
memory: 25276kb

input:

ba73dbf9c7d5e5202834d6a500541c
169995
97050 40000
83488 40000
83726 40000
100000 25052
100000 13668
2 904
60986 40000
28594 20000
51184 40000
40000 12506
92936 2
32440 40000
61562 2
29342 2
29178 2
31564 2
84020 2
22850 2
86310 40000
2 25682
67964 20000
27174 2
34700 40000
100000 18902
24042 20000
8...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
169994
161777 155301 1 3
24402 161777 3 5
102888 24402 1 7
96890 102888 3 9
106150 96890 1 11
158515 106150 3 13
110720 158515 1 15
66862 110720 3 17
32035 66862 1 19
109939 32035 3 21
51174 109939 1 23
73734 51174 3 25
151701 73734 1 27
34245 151701 3 2...

result:

ok 

Test #89:

score: 0
Accepted
time: 117ms
memory: 19476kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
1314 1854
274 822
298 698
1510 1034
958 1170
938 878
558 406
1442 1542
1394 734
546 1234
1018 1426
1206 1454
414 402
210 566
1578 426
230 278
1022 1102
462 1026
166 66
1374 1810
1334 202
314 1042
602 1658
1598 550
718 1650
186 1618
1062 1806
262 1614
1082 1950
9...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #90:

score: 0
Accepted
time: 141ms
memory: 23036kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
194 138
778 1194
636 506
688 34
322 418
332 1882
706 574
106 746
162 1682
16 650
90 830
794 926
266 1642
468 914
790 438
354 1242
200 1530
706 402
482 822
612 1926
292 1934
224 662
172 1362
676 1294
344 1602
290 466
734 1238
300 1938
224 30
184 1370
520 822
264 ...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #91:

score: 0
Accepted
time: 118ms
memory: 22996kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
166 984
734 960
1026 70
1018 572
774 48
758 496
486 720
1090 680
862 120
1510 284
790 824
58 878
1102 690
910 256
322 140
6 750
630 554
86 506
122 898
1498 886
1266 110
470 514
114 832
338 182
1094 300
718 288
278 532
470 42
630 614
438 96
958 252
378 764
958 11...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #92:

score: 0
Accepted
time: 173ms
memory: 29316kb

input:

ba73dbf9c7d5e5202834d6a500541c
199999
1398 812
1458 624
1286 630
1430 638
1250 584
1026 92
1026 148
1114 750
38 642
1202 748
842 38
998 638
662 594
1570 430
710 258
26 552
154 442
10 666
922 378
90 488
1490 538
1594 662
1154 502
210 416
670 672
454 256
898 774
590 148
1318 842
1266 794
746 860
310 9...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199998
92072 82235 1 3
170898 92072 3 5
148297 170898 1 7
30450 148297 3 9
75977 30450 1 11
130177 75977 3 13
162765 130177 1 15
52031 162765 3 17
182901 52031 1 19
178195 182901 3 21
6571 178195 1 23
30001 6571 3 25
180738 30001 1 27
15842 180738 3 29
8...

result:

ok 

Test #93:

score: 0
Accepted
time: 143ms
memory: 29104kb

input:

ba73dbf9c7d5e5202834d6a500541c
199999
866 434
1150 510
298 342
1442 170
382 976
686 442
854 894
318 976
166 640
1562 246
1438 814
1382 872
1558 782
578 320
1378 474
1474 320
1590 628
1554 278
682 82
554 318
34 248
674 870
246 522
726 482
1390 920
1298 682
294 622
402 472
1198 742
614 264
598 630
910...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199998
14492 9159 3 5
87730 14492 1 7
107996 87730 3 9
151938 107996 1 11
169744 151938 3 13
37232 169744 1 15
114619 37232 3 17
167643 114619 1 19
40911 167643 3 21
113729 40911 1 23
7648 113729 3 25
57689 7648 1 27
164568 57689 3 29
48652 164568 1 31
1...

result:

ok 

Test #94:

score: 0
Accepted
time: 175ms
memory: 29020kb

input:

ba73dbf9c7d5e5202834d6a500541c
199999
972 594
440 1198
762 586
426 1542
468 126
252 1434
182 1442
452 814
778 386
744 1118
854 82
912 178
84 1366
982 1202
212 1106
226 1442
210 878
570 890
422 846
264 1334
772 910
66 926
118 1094
304 98
810 1426
34 158
142 2
258 698
732 554
152 1110
290 490
794 690
...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199998
7105 13984 1 3
15977 7105 3 5
133243 15977 1 7
73913 133243 3 9
170983 73913 1 11
13104 170983 3 13
85628 13104 1 15
68379 85628 3 17
107524 68379 1 19
131113 107524 3 21
548 131113 1 23
78813 548 3 25
53134 78813 1 27
82595 53134 3 29
140174 8259...

result:

ok 

Test #95:

score: 0
Accepted
time: 176ms
memory: 29000kb

input:

ba73dbf9c7d5e5202834d6a500541c
199999
628 130
416 710
642 1042
500 138
150 202
294 166
742 1166
872 1094
854 378
500 846
72 490
122 10
328 422
54 834
340 1426
264 818
466 774
254 422
338 1554
952 542
238 1502
42 322
672 474
826 1246
994 1454
614 1418
816 386
314 346
620 1526
982 1298
296 1490
310 67...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199998
24987 48613 5 1
179686 18612 5 5
15294 196666 5 9
40554 137461 5 13
190006 127456 5 17
191712 51037 5 21
191849 100423 5 25
27619 188937 5 29
133440 12073 5 33
186111 3188 5 37
149317 169905 5 41
20313 148327 5 45
92125 154262 5 49
84616 189312 5 ...

result:

ok 

Test #96:

score: 0
Accepted
time: 0ms
memory: 3752kb

input:

ba73dbf9c7d5e5202834d6a500541c
7
183572 142078
183572 142080
183568 142076
183574 142078
183574 142076
183568 142078
183570 142078

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
6
5 2 183567 142077
6 5 183569 142077
0 6 183571 142079
1 0 183573 142079
3 0 183573 142077
3 4 183575 142077

result:

ok 

Test #97:

score: 0
Accepted
time: 10ms
memory: 5184kb

input:

ba73dbf9c7d5e5202834d6a500541c
14125
185792 20626
186256 20742
186128 20844
186294 20356
185902 20752
186302 20350
185884 20314
185894 20614
185980 20576
186148 20520
185830 20870
185858 20382
186108 20826
186204 20714
185822 20694
185928 20984
185768 20438
186176 20758
185926 20604
186106 20672
185...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
14124
5507 12099 185665 20385
5891 5507 185667 20385
5604 5891 185665 20387
9854 5507 185667 20383
13299 5604 185667 20387
6150 9854 185669 20385
861 13299 185669 20389
4891 6150 185671 20383
3035 861 185671 20387
3394 3035 185671 20389
6585 4891 185673 ...

result:

ok 

Test #98:

score: 0
Accepted
time: 63ms
memory: 11340kb

input:

ba73dbf9c7d5e5202834d6a500541c
100000
177456 177456
171074 171074
168200 168200
161352 161352
67104 67104
118318 118318
52258 52258
922 922
48450 48450
198048 198048
78358 78358
25852 25852
190812 190812
55744 55744
100624 100624
67562 67562
100866 100866
151566 151566
150458 150458
89932 89932
1124...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #99:

score: 0
Accepted
time: 174ms
memory: 29108kb

input:

ba73dbf9c7d5e5202834d6a500541c
199999
36996 36996
186060 186060
138654 138654
119648 119648
77274 77274
155998 155998
126848 126846
40008 40008
131372 131372
176154 176154
52550 52550
28622 28620
152276 152274
163746 163744
77792 77790
26394 26392
107542 107542
137218 137218
99318 99318
123124 12312...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199998
12390 29270 3 3
143875 12390 5 3
41974 143875 5 5
140693 41974 7 5
60211 140693 7 7
28967 60211 9 7
106552 28967 9 9
177696 106552 11 9
95544 177696 11 11
61755 95544 13 11
92144 61755 13 13
99458 92144 15 13
157970 99458 15 15
24083 157970 17 15
...

result:

ok 

Test #100:

score: 0
Accepted
time: 5ms
memory: 4748kb

input:

ba73dbf9c7d5e5202834d6a500541c
10000
176796 4336
103510 178630
176666 4270
176706 4416
176736 4434
176678 4446
176682 4352
176682 4328
103620 178604
176774 4284
176762 4278
176664 4418
103654 178692
176752 4376
176800 4358
176700 4426
103638 178626
176668 4434
103624 178694
103638 178756
103504 1786...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #101:

score: 0
Accepted
time: 26ms
memory: 8380kb

input:

ba73dbf9c7d5e5202834d6a500541c
50000
19712 125246
21028 78432
107586 175540
41632 93316
40222 19636
107864 175496
41542 93234
19724 125336
21004 78390
19840 125472
107696 175608
107744 175604
107868 175560
20950 78474
40432 19666
41542 93254
19828 125410
19672 125296
41694 93142
41650 93228
20986 78...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #102:

score: 0
Accepted
time: 64ms
memory: 13168kb

input:

ba73dbf9c7d5e5202834d6a500541c
100000
11532 82706
12484 8300
116672 115008
12586 8316
116574 115040
91278 196254
167350 193456
91178 196396
167250 193500
11696 82884
12456 8192
167330 193490
167264 193368
162872 76530
162838 76386
11692 82780
21684 51392
116554 115012
167308 193302
167246 193300
175...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #103:

score: 0
Accepted
time: 59ms
memory: 13824kb

input:

ba73dbf9c7d5e5202834d6a500541c
80000
110632 196678
110706 196562
110062 196474
110372 197130
110334 196998
110584 196940
110462 196562
110576 196678
110076 196620
110630 196486
110586 196562
110194 197046
110232 196526
110576 196778
110488 197020
110092 196852
110704 196558
110254 196698
110692 1966...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
79999
69890 66124 109899 196747
68604 15113 109901 196741
11258 68604 109901 196743
31719 11258 109903 196745
72368 69890 109901 196749
72368 31719 109901 196747
7432 72368 109903 196749
62675 7432 109901 196751
32307 62675 109903 196753
1602 32307 10990...

result:

ok 

Test #104:

score: 0
Accepted
time: 87ms
memory: 17600kb

input:

ba73dbf9c7d5e5202834d6a500541c
110000
153248 86150
153422 86140
153336 85974
153374 85680
153026 85962
153322 85930
153536 85810
152996 86246
153750 85712
153536 86158
153790 86094
153098 85904
153182 85690
153078 86148
153848 86062
153656 85888
153066 85882
153096 85824
153554 85590
153518 86200
15...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
109999
12226 76369 152901 86109
12226 18326 152903 86109
102925 12226 152901 86111
54522 12226 152903 86111
99644 10167 152903 86115
99644 8706 152905 86115
78525 99644 152903 86117
12569 13401 152905 86057
30716 53121 152905 86105
32675 54522 152905 861...

result:

ok 

Test #105:

score: 0
Accepted
time: 111ms
memory: 21604kb

input:

ba73dbf9c7d5e5202834d6a500541c
140000
182484 19098
182932 18626
183100 19106
183132 19482
182768 18952
183204 19426
182944 18630
183078 19558
182858 18640
183242 19530
183212 19092
183248 18828
183174 19230
183330 18848
183322 18710
182638 18824
183070 18818
182708 18952
183010 19154
183120 19540
18...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
139999
75527 135592 182451 18849
15407 98041 182451 19119
63042 15407 182453 19119
33105 135592 182453 18849
33105 50183 182453 18847
118536 39760 182455 18853
53535 99464 182453 18861
22752 53535 182455 18861
43797 47480 182453 18867
76024 63042 182453 ...

result:

ok 

Test #106:

score: 0
Accepted
time: 152ms
memory: 25232kb

input:

ba73dbf9c7d5e5202834d6a500541c
170000
12466 152266
12366 152380
12874 152026
12384 151764
12674 151762
12364 151662
12394 152198
13164 152022
12042 152002
12498 152164
12416 152346
12554 152040
12246 151920
12190 151820
12110 152452
12858 152564
12834 152132
13022 152014
12706 152692
12468 151568
12...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
169999
124372 32639 11967 152089
114436 168488 11967 152091
114436 124372 11969 152091
63574 63443 11967 152095
116884 63574 11967 152097
112019 116884 11969 152099
93064 10197 11967 152149
1513 155174 11969 152081
1513 361 11971 152081
147852 114436 119...

result:

ok 

Test #107:

score: 0
Accepted
time: 186ms
memory: 29084kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
121744 79484
121292 78880
120816 79608
121418 79068
121408 79102
121396 79782
121148 79636
121194 79636
121052 79024
120820 79454
121652 79184
121112 80116
121204 79382
121096 79926
121154 80104
121514 79848
121274 80028
121786 79584
120990 79962
121284 79608
12...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199999
150864 95181 120523 79483
155672 150864 120523 79485
26551 94481 120525 79417
42275 26551 120525 79419
37739 160527 120527 79481
133793 155672 120525 79485
177568 133793 120525 79487
193577 147623 120525 79493
43753 193577 120527 79493
192182 1902...

result:

ok 

Subtask #5:

score: 20
Accepted

Test #108:

score: 20
Accepted
time: 145ms
memory: 29252kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
82422 100002
100002 52498
82816 2
97624 2
100002 58032
20638 100002
100002 7646
80512 2
2 10584
28426 100002
2 83036
2 64556
47872 100002
55196 2
85350 100002
2 95376
2 23942
12488 100002
83178 2
2 9086
85598 2
100002 78820
100002 10868
98810 2
84182 100002
2 71...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
200000
112394 199575 1 3
150136 112394 3 5
127248 150136 1 7
13121 127248 3 9
11799 13121 1 11
23271 11799 3 13
18663 23271 1 15
40400 18663 3 17
111415 40400 1 19
196272 111415 3 21
50327 196272 1 23
23534 50327 3 25
184173 23534 1 27
190527 184173 3 29...

result:

ok 

Test #109:

score: 0
Accepted
time: 155ms
memory: 29248kb

input:

ba73dbf9c7d5e5202834d6a500541c
199999
10674 50002
7228 2
31566 50002
48790 2
87212 50002
100002 76172
54282 100002
2 33136
100002 78564
50002 9882
50848 50002
50002 83692
92422 100002
100002 78880
100002 71432
50002 65586
3750 2
50002 11898
50002 17296
50002 44774
3836 2
49936 50002
50002 48536
1542...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
200000
173678 7382 1 3
98672 173678 3 5
152665 98672 1 7
196130 152665 3 9
117775 196130 1 11
182076 117775 3 13
16050 182076 1 15
147105 16050 3 17
44354 147105 1 19
188324 44354 3 21
115086 188324 1 23
170770 115086 3 25
42334 170770 1 27
31895 42334 3...

result:

ok 

Test #110:

score: 0
Accepted
time: 169ms
memory: 29084kb

input:

ba73dbf9c7d5e5202834d6a500541c
199996
47612 97612
29284 20722
30860 80858
2350 52348
49558 99558
33234 83232
9050 59048
92420 57584
4174 54172
42730 92728
72144 77860
69182 19182
77286 72716
43440 6566
57918 7918
35822 85822
24864 25142
87024 37024
96744 46746
29472 79472
28650 78648
26748 76746
253...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199996
32191 103320 3 50003
32191 91487 3 50001
158182 32191 5 50003
65959 91487 5 50001
65959 33562 5 49999
47303 158182 5 50005
179075 47303 7 50005
175173 33562 7 49999
175173 97748 7 49997
15517 179075 7 50007
114506 15517 9 50007
191442 97748 9 4999...

result:

ok 

Test #111:

score: 0
Accepted
time: 174ms
memory: 31644kb

input:

ba73dbf9c7d5e5202834d6a500541c
196096
266 878
52 818
34 890
674 450
960 390
446 622
224 138
794 360
22 436
234 760
126 336
454 434
672 386
286 36
94 134
736 774
782 752
1014 692
228 594
778 878
550 1008
246 732
588 250
982 460
786 76
342 404
2 68
58 174
230 282
604 358
700 438
274 156
94 324
706 948...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
261120
183524 153844 1 3
167151 183524 3 5
142114 167151 1 7
88910 142114 3 9
145937 88910 1 11
143141 145937 3 13
12356 143141 1 15
140638 12356 3 17
97877 140638 1 19
75293 97877 3 21
104550 75293 1 23
136809 104550 3 25
107932 136809 1 27
146291 10793...

result:

ok 

Test #112:

score: 0
Accepted
time: 150ms
memory: 26964kb

input:

ba73dbf9c7d5e5202834d6a500541c
175280
382 334
666 902
752 406
992 1306
1252 256
252 422
762 1018
72 210
1078 102
478 1182
1392 68
942 530
180 252
152 1176
2 594
52 182
522 1032
482 1386
242 260
242 276
112 572
782 138
762 1034
532 586
222 160
232 236
914 392
172 1006
612 1258
1170 832
1236 992
1370 ...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
194600
62771 121472 1 3
114145 62771 3 5
140261 114145 1 7
44338 140261 3 9
12435 44338 1 11
24956 12435 3 13
28840 24956 1 15
42081 28840 3 17
118552 42081 1 19
173678 118552 3 21
82802 173678 1 23
130491 82802 3 25
10586 130491 1 27
59213 10586 3 29
12...

result:

ok 

Test #113:

score: 0
Accepted
time: 0ms
memory: 3804kb

input:

ba73dbf9c7d5e5202834d6a500541c
7
183572 142078
183572 142080
183568 142076
183574 142078
183574 142076
183568 142078
183570 142078

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
6
5 2 183567 142077
6 5 183569 142077
0 6 183571 142079
1 0 183573 142079
3 0 183573 142077
3 4 183575 142077

result:

ok 

Test #114:

score: 0
Accepted
time: 25ms
memory: 7772kb

input:

ba73dbf9c7d5e5202834d6a500541c
31065
186080 21286
185980 21532
185748 21002
185714 21252
185436 20722
186236 21564
185932 21236
185414 20700
185944 21578
185658 20936
185856 21540
186034 21122
186020 21492
186014 21310
185282 20638
185482 20878
185224 20682
185670 21264
186032 21510
186004 21112
185...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
34451
21747 14787 185077 20849
5891 21747 185077 20851
20205 5891 185079 20853
16555 5891 185079 20851
14795 16555 185081 20853
26637 14795 185083 20851
24755 26637 185083 20853
25748 26637 185085 20853
27624 25748 185087 20851
22908 27624 185089 20853
1...

result:

ok 

Test #115:

score: 0
Accepted
time: 11ms
memory: 5596kb

input:

ba73dbf9c7d5e5202834d6a500541c
20000
70262 161716
35896 78638
36020 78778
35780 78778
70374 161892
35858 78838
35908 78680
70376 161802
35886 78784
35858 78886
70436 161842
35884 78716
36030 78752
70344 161912
70270 161766
35868 78870
70276 161828
35806 78664
70330 161764
35978 78806
35850 78718
703...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #116:

score: 0
Accepted
time: 45ms
memory: 10624kb

input:

ba73dbf9c7d5e5202834d6a500541c
70000
101734 41174
53110 85692
125290 151418
53092 85668
125240 151526
101728 41006
155882 162620
70032 179926
125070 151314
69944 179838
125086 151362
101720 41088
125220 151418
78622 142762
70006 179900
78714 142782
53076 85646
78466 142806
156134 162652
69884 179760...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #117:

score: 0
Accepted
time: 86ms
memory: 15920kb

input:

ba73dbf9c7d5e5202834d6a500541c
120000
81980 29184
45086 128478
45130 128460
34094 161734
34312 161616
6660 133698
45032 128422
6464 133838
77706 149488
29744 82012
34066 161698
34152 161602
67876 16558
81992 29244
41026 168276
6594 133820
6410 133690
34300 161660
172610 38842
172506 38750
40990 1682...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #118:

score: 0
Accepted
time: 88ms
memory: 17204kb

input:

ba73dbf9c7d5e5202834d6a500541c
100000
21246 185820
20976 186272
21262 185900
20648 185812
21086 186086
20868 185712
21114 185810
21262 186168
20684 185892
20982 186216
20922 186194
21206 185654
20762 185796
21248 186200
21142 185850
21060 185510
20926 185746
21326 185710
20948 185798
21056 185958
21...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
119656
11858 97902 20641 185979
22618 97902 20641 185977
76448 28788 20643 185899
46663 76448 20645 185899
71833 96608 20643 185967
71833 17964 20643 185965
16761 22618 20643 185979
71151 76448 20645 185897
71151 63349 20647 185897
1392 61648 20647 18596...

result:

ok 

Test #119:

score: 0
Accepted
time: 109ms
memory: 20556kb

input:

ba73dbf9c7d5e5202834d6a500541c
125000
143578 113244
143620 112756
143600 113284
143670 113030
143848 113452
143654 113456
144176 112896
143982 112746
143648 112962
143542 113182
143954 113258
143500 112982
143960 113170
144016 112808
143802 112736
143952 112846
143364 112900
143658 112576
143632 112...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
149635
6053 78022 143221 113047
111332 6053 143219 113049
3649 97154 143221 113055
23613 38470 143221 113023
50879 111332 143221 113049
119198 50879 143221 113051
14480 97154 143221 113053
14480 119198 143223 113053
102291 34801 143225 113019
114491 3847...

result:

ok 

Test #120:

score: 0
Accepted
time: 134ms
memory: 24412kb

input:

ba73dbf9c7d5e5202834d6a500541c
150000
115254 119710
115364 119296
115174 119288
115390 119648
115444 119620
115682 119260
115616 118782
114978 119008
115702 119260
115590 119250
115170 119030
115146 119308
115222 118958
114912 118972
115304 118678
115034 119388
115326 119348
115328 119082
115256 118...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
179481
107578 63199 114755 119149
102391 107578 114753 119151
8539 97122 114753 119153
8539 102391 114755 119153
121616 8539 114753 119155
92273 63199 114755 119147
138950 102391 114755 119151
138628 121616 114755 119155
104210 138628 114755 119157
11971...

result:

ok 

Test #121:

score: 0
Accepted
time: 143ms
memory: 27528kb

input:

ba73dbf9c7d5e5202834d6a500541c
175000
70684 45878
70722 45914
70572 45804
70996 46520
70150 46340
70360 46792
70818 45802
70460 46280
70946 46002
70154 46322
70894 46696
70710 46696
70120 46212
71042 46286
70194 46302
70624 45856
70434 46158
70936 46408
70870 46012
70790 45822
70470 45956
70136 4644...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
209652
113082 122181 69989 46345
113082 67331 69991 46345
160255 113082 69989 46347
136421 113082 69991 46347
39856 136421 69993 46345
39856 121949 69995 46345
164624 39856 69993 46347
54480 121949 69995 46343
54480 117297 69997 46343
21359 164624 69995 ...

result:

ok 

Test #122:

score: 0
Accepted
time: 196ms
memory: 30848kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
120832 79932
121178 79254
120936 79156
121624 79142
121168 79430
121456 79722
121398 79244
121684 79344
121242 79718
121204 79394
121244 79174
121382 78964
121072 79288
121126 79078
121494 79378
121472 79306
121074 79832
121140 79956
121018 80010
121332 79428
12...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
239462
183980 41518 120569 79587
106872 41518 120569 79585
136847 106872 120571 79587
47005 136847 120573 79585
47005 108339 120575 79585
957 47005 120573 79587
68291 3409 120573 79589
68291 957 120575 79589
169341 180351 120573 79595
102899 192638 12057...

result:

ok 

Subtask #6:

score: 30
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Dependency #4:

100%
Accepted

Dependency #5:

100%
Accepted

Test #123:

score: 30
Accepted
time: 0ms
memory: 3840kb

input:

ba73dbf9c7d5e5202834d6a500541c
4
200000 4
199998 4
200000 2
199998 2

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
3
1 3 199997 3
2 3 199999 3
0 2 200001 3

result:

ok 

Test #124:

score: 0
Accepted
time: 0ms
memory: 3808kb

input:

ba73dbf9c7d5e5202834d6a500541c
4
200000 199998
199998 200000
200000 200000
199998 199998

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
3
1 3 199997 199999
0 3 199999 199999
2 0 200001 199999

result:

ok 

Test #125:

score: 0
Accepted
time: 158ms
memory: 29056kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
1784 1386
1176 1976
1038 1738
1194 1602
1436 1156
1164 1640
1514 1952
1132 1700
1114 1624
1370 1310
1030 1866
1728 1000
1024 1356
1618 1228
1406 1044
1598 1570
1376 1082
1620 1332
1646 1240
1410 1712
1086 1260
1412 1424
1286 1176
1202 1968
1146 1682
1042 1320
13...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199999
101816 47397 999 1001
178467 101816 1001 1003
18332 178467 999 1005
154758 18332 1001 1007
9651 154758 999 1009
9722 9651 1001 1011
87570 9722 999 1013
45586 87570 1001 1015
21167 45586 999 1017
101912 21167 1001 1019
76815 101912 999 1021
123188 ...

result:

ok 

Test #126:

score: 0
Accepted
time: 181ms
memory: 29064kb

input:

ba73dbf9c7d5e5202834d6a500541c
199999
133028 133028
12766 12768
49712 49714
50476 50478
157374 157376
154876 154878
66250 66250
48328 48330
125746 125746
92842 92844
85072 85074
109020 109022
148662 148662
67198 67200
70744 70744
114648 114650
120180 120182
59180 59182
52256 52258
21052 21054
161110...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199998
26141 145824 1 3
139298 26141 3 3
179704 139298 3 5
142026 179704 5 5
81799 142026 5 7
167800 81799 7 7
110848 167800 7 9
119584 110848 9 9
175688 119584 9 11
18689 175688 11 11
148950 18689 11 13
112569 148950 13 13
47400 112569 13 15
168053 4740...

result:

ok 

Test #127:

score: 0
Accepted
time: 202ms
memory: 29104kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
49744 49746
101460 101462
17124 17124
17910 17910
102486 102486
71914 71912
1850 1850
37026 37024
27810 27808
12632 12632
10982 10980
67836 67834
38714 38714
62630 62628
123180 123180
112744 112742
14328 14330
111296 111294
83526 83528
116384 116384
12856 12854
...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199999
114545 161435 1 3
170761 161435 3 3
154197 170761 5 3
20637 154197 3 5
115840 154197 5 5
193990 115840 7 5
158718 193990 5 7
92406 193990 7 7
134369 92406 9 7
73186 134369 7 9
187510 134369 9 9
142656 187510 11 9
7419 142656 9 11
86431 142656 11 1...

result:

ok 

Test #128:

score: 0
Accepted
time: 179ms
memory: 29252kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
56882 56882
2378 2378
62118 62122
36338 36338
54862 54864
93436 93438
133122 133124
106102 106102
118556 118558
2636 2636
7390 7392
113600 113604
94568 94568
43882 43884
33832 33832
67966 67966
90366 90370
35250 35252
6928 6930
66074 66076
115376 115380
40916 40...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199999
161824 9274 1 3
192577 161824 3 5
61948 161824 3 3
62368 192577 3 7
69642 62368 5 7
59484 62368 5 5
185114 69642 5 9
13717 185114 7 9
102048 185114 7 7
27939 13717 7 11
195300 27939 9 11
45680 27939 9 9
103058 195300 9 13
68286 103058 11 13
156917...

result:

ok 

Test #129:

score: 0
Accepted
time: 201ms
memory: 29180kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
762 776
946 952
34556 34562
11442 11450
44116 44126
22460 22462
31376 31382
23242 23252
18882 18886
42244 42254
15200 15212
25358 25368
38298 38306
33196 33204
22150 22166
23124 23124
310 310
768 768
20476 20480
30626 30638
5470 5476
33568 33584
40172 40188
9252...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199999
94778 177078 1 3
156422 94778 3 5
167911 156422 1 7
120694 167911 3 9
3361 120694 1 11
164804 3361 3 13
183016 164804 1 15
177508 183016 3 17
100583 94778 3 3
77700 156422 3 7
59880 77700 5 7
125822 120694 3 11
27733 125822 5 11
164884 164804 3 15...

result:

ok 

Test #130:

score: 0
Accepted
time: 172ms
memory: 29312kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
2516 2554
6574 6610
6594 6654
10484 10498
40 96
5018 5080
3176 3214
3422 3452
5060 5102
5994 6034
286 338
5338 5380
2350 2364
2920 2938
11836 11860
7448 7498
9148 9162
7196 7236
9086 9142
1948 1976
6456 6520
9524 9542
6940 6992
8124 8150
7306 7306
586 628
11544 ...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
199999
48476 102706 1 3
38297 48476 3 5
46948 38297 1 7
104919 46948 3 9
140428 104919 1 11
124832 140428 3 13
75252 124832 1 15
64263 75252 3 17
185173 64263 1 19
172929 185173 3 21
35378 172929 1 23
191829 35378 3 25
76031 191829 1 27
7324 76031 3 29
1...

result:

ok 

Test #131:

score: 0
Accepted
time: 31ms
memory: 9632kb

input:

ba73dbf9c7d5e5202834d6a500541c
46320
185612 20720
185550 21680
185562 20750
185420 20976
185368 20962
185500 21290
185682 20734
185364 21538
185456 21194
185398 21524
185436 21102
185832 20904
185478 21162
185476 21300
185564 20996
185556 21278
185876 20958
185404 20968
185480 21498
185874 20788
185...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
47452
21747 14787 185187 20985
16555 14787 185189 20985
45111 16555 185191 20985
25748 5891 185189 21001
25748 24755 185191 21001
43416 25748 185189 21003
22908 43416 185191 21005
31959 22908 185189 21007
15678 20205 185191 20975
19404 15678 185191 20977...

result:

ok 

Test #132:

score: 0
Accepted
time: 18ms
memory: 6656kb

input:

ba73dbf9c7d5e5202834d6a500541c
30000
168222 178842
196512 119388
196710 119380
196584 119266
196678 119290
196636 119442
168294 178902
168184 178974
196676 119422
196642 119406
196548 119424
196716 119382
168192 178810
168262 178984
196578 119446
168180 178752
196560 119280
196680 119200
196672 1192...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #133:

score: 0
Accepted
time: 47ms
memory: 11336kb

input:

ba73dbf9c7d5e5202834d6a500541c
80000
159084 135416
13496 13072
13486 13166
18782 56512
13354 13212
159082 135362
18840 56492
47132 130562
176744 183884
159178 135436
92764 136338
13364 13036
13366 13264
159056 135350
159208 135266
159144 135244
47092 130608
18824 56520
18760 56550
18854 56624
47048 ...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #134:

score: 0
Accepted
time: 97ms
memory: 18068kb

input:

ba73dbf9c7d5e5202834d6a500541c
150000
64856 103928
3856 63474
53938 173456
190302 64294
190122 64436
143294 54146
55680 79216
195316 66574
4022 63368
64678 103974
194176 64466
55710 79036
100402 142382
53886 173402
100304 142426
3968 63386
64716 103966
190274 64354
64878 103970
100288 142422
188578 ...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #135:

score: 0
Accepted
time: 152ms
memory: 23100kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
191134 71824
170268 159138
13986 32208
129736 17632
92912 115602
32140 38738
23018 151608
159928 56914
53228 79446
191220 71798
170346 159194
170246 159168
170288 159096
170284 159170
14004 32116
191192 71776
170278 159244
22978 151538
10592 74986
13986 32228
27...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
0

result:

ok 

Test #136:

score: 0
Accepted
time: 84ms
memory: 16256kb

input:

ba73dbf9c7d5e5202834d6a500541c
100000
21316 185658
21202 185768
21094 185736
21068 185968
20982 185860
20902 185824
21184 185644
21168 186112
21416 185894
20936 185998
20978 185962
21092 186196
21076 186138
20798 185844
20974 185674
21072 185890
20912 186044
21024 186216
20934 185734
21200 185828
20...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
100281
5640 96863 20751 185903
92190 38577 20753 185963
63327 92190 20751 185965
29717 5640 20753 185901
29717 91970 20755 185901
47610 29717 20753 185903
94959 47610 20755 185905
86303 94959 20753 185907
56848 86303 20755 185909
58732 92190 20753 185965...

result:

ok 

Test #137:

score: 0
Accepted
time: 106ms
memory: 18780kb

input:

ba73dbf9c7d5e5202834d6a500541c
120000
85986 186370
85984 186246
85742 185750
85402 186098
85504 186178
85382 186322
85872 186064
85466 186362
85678 185970
85626 186254
85756 185976
85350 186206
85862 186246
85590 186386
85420 186008
86040 186024
85774 185734
85570 186390
85888 185974
86044 186124
85...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
120295
78226 4565 85271 186197
48011 117364 85271 186199
48011 78226 85273 186199
70062 4565 85273 186197
14608 70062 85275 186197
110876 56733 85277 186179
77185 110876 85275 186181
68449 77185 85277 186183
112913 68449 85275 186185
44678 112913 85277 1...

result:

ok 

Test #138:

score: 0
Accepted
time: 114ms
memory: 21740kb

input:

ba73dbf9c7d5e5202834d6a500541c
140000
183050 19024
182692 18788
182966 19488
182850 19288
183106 19328
183080 18904
182838 19004
182702 19236
183354 18966
182620 18964
183258 18944
183288 18802
183340 18944
183162 18792
182976 18946
182878 18788
183182 19452
182890 19114
183292 18898
183148 19122
18...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
140307
5537 18511 182577 19131
138915 30245 182579 18959
23023 138915 182581 18959
128966 8939 182579 18991
128966 38957 182579 18989
108768 128966 182581 18991
117330 83527 182579 19035
63739 117330 182581 19035
104528 63739 182579 19037
104444 18511 18...

result:

ok 

Test #139:

score: 0
Accepted
time: 154ms
memory: 23888kb

input:

ba73dbf9c7d5e5202834d6a500541c
160000
47518 19576
47460 18882
47484 19474
47860 19320
47908 19484
47336 19076
47574 19454
47524 19614
47542 19270
47506 18886
47582 18948
47774 19384
47288 19138
47842 19458
47958 19222
47808 19372
47298 18996
47542 19438
47964 19208
47640 19492
47964 19488
47512 1927...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
160317
103942 127242 47119 19303
135000 103942 47119 19305
61513 103942 47121 19305
61513 105981 47121 19303
150010 61513 47123 19305
71570 3863 47125 19263
102723 158578 47123 19287
105808 39856 47125 19299
63844 105981 47123 19303
63844 105808 47123 19...

result:

ok 

Test #140:

score: 0
Accepted
time: 164ms
memory: 26636kb

input:

ba73dbf9c7d5e5202834d6a500541c
180000
145130 52018
144664 52446
144878 52376
144676 51960
144996 51904
145142 52306
145252 51890
145184 51848
144832 51904
145110 51958
145006 51936
144724 52602
144558 52270
145118 52144
144748 52678
144866 52212
144492 52466
144562 52222
144436 52124
144892 51986
14...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
180341
134168 113980 144361 52283
111869 126179 144361 52277
111869 155820 144363 52277
127995 111869 144361 52279
117420 113980 144361 52281
117420 127995 144363 52281
71649 31197 144361 52289
46104 111869 144363 52279
25784 46104 144365 52279
43412 117...

result:

ok 

Test #141:

score: 0
Accepted
time: 166ms
memory: 29120kb

input:

ba73dbf9c7d5e5202834d6a500541c
200000
121472 79456
121056 79800
120988 79700
120930 79566
120792 79618
120746 79366
121444 79282
121226 79812
120826 79760
121066 79046
120838 79206
121566 79462
121026 79834
120988 79354
121390 79512
121318 79358
120868 79560
121476 79700
121572 79384
120872 79682
12...

output:

3kr2yac8xnf3ktgcoqviaw115df6rra7is6p5uix
OK
1
200385
89282 81180 120683 79535
161477 62679 120685 79525
50990 89282 120685 79533
66621 98351 120685 79539
179872 161477 120687 79527
179872 86570 120687 79525
38650 50990 120687 79535
38650 196773 120687 79533
23639 38650 120689 79535
159786 98351 1206...

result:

ok