QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#707944#8642. Spy 3hhoppitreeAC ✓79ms9468kbC++178.7kb2024-11-03 18:18:232024-11-03 18:18:23

Judging History

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

  • [2024-11-03 18:18:23]
  • 评测
  • 测评结果:AC
  • 用时:79ms
  • 内存:9468kb
  • [2024-11-03 18:18:23]
  • 提交

Aoi

#include <bits/stdc++.h>
#include "Aoi.h"

using namespace std;

vector<int> operator * (vector<int> x, int y) {
    if (x.empty()) return {};
    vector<int> tres(x.size());
    for (int i = 0; i < (int)x.size(); ++i) {
        tres[i] += x[i] * y;
        if (i + 1 != (int)x.size()) {
            tres[i + 1] += tres[i] >> 10;
            tres[i] &= 1023;
        }
    }
    while (tres.back() >= 1024) {
        tres.push_back(tres.back() >> 10);
        tres[tres.size() - 2] &= 1023;
    }
    return tres;
}

vector<int> operator + (vector<int> x, int y) {
    if (!y) return x;
    if (x.empty()) {
        x = {0};
    }
    x[0] += y;
    int r = 0;
    while (r < (int)x.size() && x[r] >= 1024) {
        x[r] -= 1024;
        if (r == (int)x.size() - 1) x.push_back(0);
        ++x[r + 1];
    }
    return x;
}

string tr(vector<int> arr) {
    string res;
    for (int i = (int)arr.size() - 1; ~i; --i) {
        for (int j = 9; ~j; --j) {
            res += (char)(((arr[i] >> j) & 1) + '0');
        }
    }
    while (!res.empty() && res[0] == '0') {
        res = res.substr(1);
    }
    return res;
}

namespace Aoi {
    const int N = 1e4 + 5;

    vector< pair<int, long long> > G[N];
    long long dis[N];
    int pre[N];
    vector<int> T[N];
    int dep[N], clk[N];

    void dfs(int x) {
        for (auto v : T[x]) {
            dep[v] = dep[x] + 1, dfs(v), clk[x] = min(clk[x], clk[v]);
        }
    }
    
    int visit[N];

    void mark(int x) {
        while (x) {
            visit[x] = 1;
            x = pre[x];
        }
    }

    int getLst(int x) {
        while (x) {
            if (visit[x]) return x;
            x = pre[x];
        }
        return 0;
    }

    map< pair<int, int>, int> spe;

    int getId(int x) {
        while (x) {
            if (spe.count({x, pre[x]})) {
                return spe[{x, pre[x]}] + 1;
            }
            x = pre[x];
        }
        return 0;
    }

    string calc(vector< pair<int, int> > o) {
        vector<int> res;
        for (int i = (int)o.size() - 1; ~i; --i) {
            res = res * o[i].first + o[i].second;
        }
        return tr(res);
    }

    string aoi(int n, int m, int q, int k, vector<int> ox, vector<int> oy, vector<long long> oz, vector<int> qr, vector<int> o) {
        for (int i = 0; i < m; ++i) {
            G[ox[i]].push_back({oy[i], oz[i]});
            G[oy[i]].push_back({ox[i], oz[i]});
        }
        for (int i = 1; i < n; ++i) {
            dis[i] = 1e18;
        }
        priority_queue< pair<long long, int> > pq;
        pq.push({0, 0});
        while (!pq.empty()) {
            long long D = -pq.top().first;
            int x = pq.top().second;
            pq.pop();
            if (D != dis[x]) continue;
            for (auto [v, w] : G[x]) {
                long long nD = D + w;
                if (nD < dis[v] || (nD == dis[v] && x < pre[v])) {
                    if (nD != dis[v]) pq.push({-nD, v});
                    dis[v] = nD, pre[v] = x;
                }
            }
        }
        for (int i = 0; i < n; ++i) clk[i] = q;
        for (int i = 0; i < q; ++i) {
            clk[qr[i]] = min(clk[qr[i]], i);
        }
        for (int i = 1; i < n; ++i) {
            T[pre[i]].push_back(i);
        }
        dfs(0);
        vector< pair<int, int> > res;
        for (int i = 0; i < k; ++i) {
            if (dep[ox[o[i]]] > dep[oy[o[i]]]) swap(ox[o[i]], oy[o[i]]);
            res.push_back({q + 1, (pre[oy[o[i]]] == ox[o[i]] ? clk[oy[o[i]]] : q)});
            spe[{ox[o[i]], oy[o[i]]}] = spe[{oy[o[i]], ox[o[i]]}] = i;
        }
        mark(qr[0]);
        for (int i = 1; i < q; ++i) {
            res.push_back({k + 1, getId(getLst(qr[i]))});
            mark(qr[i]);
        }
        string ret = calc(res);
        assert((int)ret.size() <= 1350);
        return ret;
    }
}

string aoi(int n, int m, int q, int k, vector<int> ox, vector<int> oy, vector<long long> oz, vector<int> qr, vector<int> o) {
    return Aoi::aoi(n, m, q, k, ox, oy, oz, qr, o);
}

Bitaro

#include <bits/stdc++.h>
#include "Bitaro.h"

using namespace std;

vector<int> operator / (vector<int> x, int y) {
    vector<int> tres(x.size());
    int now = 0;
    for (int i = (int)x.size() - 1; ~i; --i) { 
        now = (now << 10) + x[i];
        tres[i] = now / y;
        now %= y;
    }
    while (!tres.empty() && !tres.back()) {
        tres.pop_back();
    }
    return tres;
}

int operator % (vector<int> x, int y) {
    vector<int> tres(x.size());
    int now = 0;
    for (int i = (int)x.size() - 1; ~i; --i) { 
        now = (now << 10) + x[i];
        tres[i] = now / y;
        now %= y;
    }
    return now;
}

vector<int> parse(string S) {
    while (S.size() % 10) S = "0" + S;
    vector<int> res(S.size() / 10);
    for (int i = 0; i < (int)S.size(); i += 10) {
        for (int j = 0; j < 10; ++j) {
            res[(int)S.size() / 10 - 1 - i / 10] += (S[i + j] - '0') << (9 - j);
        }
    }
    return res;
}

namespace Bitaro {
    const int N = 1e4 + 5;

    vector<int> apd[N];
    int pre[N], det[N], dep[N], usd[N << 1];
    vector< tuple<int, int, long long> > E;
    long long dis[N];
    vector< pair<int, int> > ts;
    vector< pair<int, long long> > G[N];

    vector<int> process(int n, vector<int> imp, int id) {
        for (int i = 0; i < n; ++i) {
            G[i].clear();
            dis[i] = (i == 0 ? 0 : 1e18), pre[i] = 0;
        }
        for (auto [x, y, z] : E) {
            G[x].push_back({y, z});
            G[y].push_back({x, z});
        }
        for (auto x : imp) {
            G[ts[x].first].push_back({ts[x].second, 1});
            G[ts[x].second].push_back({ts[x].first, 1});
        }
        priority_queue< pair<long long, int> > pq;
        pq.push({0, 0});
        while (!pq.empty()) {
            long long D = -pq.top().first;
            int x = pq.top().second;
            pq.pop();
            if (D != dis[x]) continue;
            for (auto [v, w] : G[x]) {
                long long nD = D + w;
                if (nD < dis[v] || (nD == dis[v] && x < pre[v])) {
                    if (nD != dis[v]) pq.push({-nD, v});
                    dis[v] = nD, pre[v] = x;
                }
            }
        }
        vector<int> path = {id};
        int now = id;
        while (now) {
            path.push_back(pre[now]);
            now = pre[now];
        }
        reverse(path.begin(), path.end());
        for (int i = 1; i < (int)path.size(); ++i) {
            det[path[i]] = path[i - 1];
            dep[path[i]] = dep[path[i - 1]] + 1;
        }
        return path;
    }

    void bitaro(int n, int m, int q, int k, vector<int> ox, vector<int> oy, vector<long long> oz, vector<int> qr, vector<int> o, string S) {
        vector<int> val = parse(S);
        map< pair<int, int>, int> zM;
        for (int i = 0; i < k; ++i) {
            int cl = val % (q + 1);
            val = val / (q + 1);
            apd[cl].push_back(i);
            zM[{ox[o[i]], oy[o[i]]}] = zM[{oy[o[i]], ox[o[i]]}] = i;
        }
        map< pair<int, int>, int> M;
        for (int i = 0; i < m; ++i) {
            M[{ox[i], oy[i]}] = M[{oy[i], ox[i]}] = i;
        }
        for (int i = 0; i < k; ++i) {
            usd[o[i]] = 1;
            ts.push_back({ox[o[i]], oy[o[i]]});
        }
        for (int i = 0; i < m; ++i) {
            if (!usd[i]) E.push_back({ox[i], oy[i], oz[i]});
        }
        for (int i = 0; i < q; ++i) {
            vector<int> imp;
            if (i) {
                int id = val % (k + 1);
                val = val / (k + 1);
                if (id) {
                    --id;
                    if (dep[ox[o[id]]] < dep[oy[o[id]]]) {
                        swap(ox[o[id]], oy[o[id]]);
                    }
                    id = ox[o[id]];
                    while (id) {
                        if (usd[M[{id, det[id]}]]) {
                            imp.push_back(zM[{id, det[id]}]);
                        }
                        id = det[id];
                    }
                }
            }
            for (auto x : apd[i]) {
                imp.push_back(x);
            }
            vector<int> res = process(n, imp, qr[i]);
            vector<int> ids;
            for (int j = 0; j + 1 < (int)res.size(); ++j) {
                ids.push_back(M[{res[j], res[j + 1]}]);
            }
            answer(ids);
        }
    }
}

void bitaro(int n, int m, int q, int k, vector<int> ox, vector<int> oy, vector<long long> oz, vector<int> qr, vector<int> o, string S) {
    Bitaro::bitaro(n, m, q, k, ox, oy, oz, qr, o, S);
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 25ms
memory: 8592kb

Manager to Aoi

200 19900
13 70 985302938314
120 174 18964037101
18 153 170196070829
45 129 323777973024
62 198 689223413645
88 133 457404464825
19 57 803409835578
22 187 662331177910
18 31 529437059733
161 182 637731822589
109 131 32831735773
109 191 875742441191
43 78 135479410688
56 60 19000632823
44 143 6823771...

Aoi to Manager

A11010111100100001101010000011010100001011000001101000010000100101000010111110001101001010110100011110111110100000000010010111010000110101001011101001000110100100001001001100001100110110011110110100010100010101110101101000011111010001000100100110100101010111101101001111001011101111111000100100101110...

Manager to Bitaro

200 19900
13 70 985302938314
120 174 18964037101
18 153 170196070829
45 129 323777973024
62 198 689223413645
88 133 457404464825
19 57 803409835578
22 187 662331177910
18 31 529437059733
161 182 637731822589
109 131 32831735773
109 191 875742441191
43 78 135479410688
56 60 19000632823
44 143 6823771...

Bitaro to Manager

4
17135 3534 4830 14466
1
11921
2
17135 9906
4
17135 3534 18777 907
6
18033 13659 9145 14255 10379 11567
7
11921 7585 5782 2139 15549 19315 13987
2
17135 13815
5
17135 13815 8201 7265 15719
4
17135 3534 4830 9175
4
11921 7585 5782 8018
2
18033 13659
4
11921 7585 10922 14444
5
468 273 10532 11483 845...

Manager to Checker

1.00

result:

points 1.0

Test #2:

score: 100
Accepted
time: 1ms
memory: 4544kb

Manager to Aoi

6 7
0 5 839719370667
2 4 244076065937
1 5 337346113825
2 3 716558559511
1 4 837188452057
0 3 661778933008
1 3 678360389380
5
2 3 1 5 4
7
4 2 0 6 1 5 3

Aoi to Manager

A111111000110101101100111010001F

Manager to Bitaro

6 7
0 5 -1
2 4 -1
1 5 -1
2 3 -1
1 4 -1
0 3 -1
1 3 -1
5
2 3 1 5 4
7
4 2 0 6 1 5 3
A111111000110101101100111010001F

Bitaro to Manager

2
5 3
1
5
2
0 2
1
0
3
5 3 1
F

Manager to Checker

1.00

result:

points 1.0

Test #3:

score: 100
Accepted
time: 42ms
memory: 8932kb

Manager to Aoi

10000 19480
2933 9484 1000000000000
2567 9405 1000000000000
5263 6064 1000000000000
1453 8911 1000000000000
2445 8695 1000000000000
5686 7074 1000000000000
5031 5441 1000000000000
253 5144 1000000000000
8087 8704 1000000000000
263 3499 1000000000000
5200 8741 1000000000000
5764 8908 1000000000000
20...

Aoi to Manager

A11100111101111010010100000101011100000010010110110001001110011110110000110111110011101110110000100011011011001011010101101001010110010000011100000100011011100100000111110011011101101011011000010111101100110100100110101111110000001000111010010101010010010001100000101011100101001100000101000011110011...

Manager to Bitaro

10000 19480
2933 9484 1000000000000
2567 9405 1000000000000
5263 6064 1000000000000
1453 8911 1000000000000
2445 8695 1000000000000
5686 7074 1000000000000
5031 5441 1000000000000
253 5144 1000000000000
8087 8704 1000000000000
263 3499 1000000000000
5200 8741 1000000000000
5764 8908 1000000000000
20...

Bitaro to Manager

97
1260 13136 16199 11872 6454 19283 13489 12265 5995 10777 3525 17119 3092 2048 14179 13387 5938 6450 10764 1790 4230 17548 6275 4451 8801 8824 16269 18740 9533 17825 19041 7395 8536 4947 14436 15131 11691 15813 16617 13143 11169 10217 599 558 8399 7602 9809 12118 13004 2264 2267 12996 6620 12600 1...

Manager to Checker

1.00

result:

points 1.0

Test #4:

score: 100
Accepted
time: 54ms
memory: 8304kb

Manager to Aoi

10000 14998
4204 9454 2
1333 6756 8
5422 6909 4
8513 9188 5
3573 9262 7
4725 9276 7
6854 8959 5
2090 4396 7
290 9872 3
3446 9893 1
8535 9507 2
4717 8629 10
513 7572 1
4831 9533 6
4729 8955 8
7695 8432 5
1437 3326 3
616 7394 8
2406 9126 6
2704 4165 5
1714 8188 3
5669 9598 2
107 1426 6
42 782 3
4293 7...

Aoi to Manager

A11011111110111110000000110100010010010101101011110110101101010111101110110000110000100100000110010111011010111100011010000110011011000101100110110100011111110110100110101100101011111001110011111100010101111100100000010010010110011010101110111100111101110101100001010101000010000000010001001111000010...

Manager to Bitaro

10000 14998
4204 9454 2
1333 6756 8
5422 6909 4
8513 9188 5
3573 9262 7
4725 9276 7
6854 8959 5
2090 4396 7
290 9872 3
3446 9893 1
8535 9507 2
4717 8629 10
513 7572 1
4831 9533 6
4729 8955 8
7695 8432 5
1437 3326 3
616 7394 8
2406 9126 6
2704 4165 5
1714 8188 3
5669 9598 2
107 1426 6
42 782 3
4293 7...

Bitaro to Manager

4528
6715 5358 4070 389 13901 1829 11282 1680 2812 7536 14128 1703 1848 13138 7160 9658 8294 9766 3195 5388 12850 577 1204 1884 7498 12023 10110 7163 7715 11209 3766 10303 2977 3630 12484 8732 6744 10737 6201 1182 12487 11865 1270 9647 1632 3062 5880 10569 3879 6090 9336 12781 2009 1373 10372 7503 4...

Manager to Checker

1.00

result:

points 1.0

Test #5:

score: 100
Accepted
time: 42ms
memory: 8988kb

Manager to Aoi

10000 19800
314 731 10
5299 8954 4
3816 7739 9
699 9283 9
1882 6374 1
6078 7022 8
5076 9179 6
2945 4960 8
3439 9043 4
1328 8229 3
8190 9426 5
2650 7973 9
2582 3109 10
1892 2519 7
5345 9408 7
516 5467 1
1939 2178 6
6163 9562 10
6413 8834 2
6550 9137 2
831 6431 10
7068 9071 4
2727 9695 3
1642 4134 10
...

Aoi to Manager

A10010111000010111111111011110110011000110010111110010111010010000111010110010000011110010111001010101000100000110101111000000110000001011100011100110100101110000100000100100101010001010010100011001111011011001111100110101010111010001010000101000101110000101010110110000011101110101110110001010011111...

Manager to Bitaro

10000 19800
314 731 10
5299 8954 4
3816 7739 9
699 9283 9
1882 6374 1
6078 7022 8
5076 9179 6
2945 4960 8
3439 9043 4
1328 8229 3
8190 9426 5
2650 7973 9
2582 3109 10
1892 2519 7
5345 9408 7
516 5467 1
1939 2178 6
6163 9562 10
6413 8834 2
6550 9137 2
831 6431 10
7068 9071 4
2727 9695 3
1642 4134 10
...

Bitaro to Manager

99
9761 2561 19261 6944 18105 19742 16682 3606 12492 1853 19755 395 12667 8141 704 4026 15294 5810 475 3253 11895 7302 15665 8689 8814 16098 7050 8847 3263 14315 13554 5177 17684 11318 6508 9674 13715 2693 815 12924 13135 6414 19571 6428 17632 10942 1685 10205 7294 10030 9170 9777 9042 4814 5305 189...

Manager to Checker

1.00

result:

points 1.0

Test #6:

score: 100
Accepted
time: 45ms
memory: 8752kb

Manager to Aoi

10000 18990
1222 6595 2
1793 6566 1
5929 8876 2
2824 4108 1
5250 6286 6
1361 6510 9
5320 6361 3
2636 3172 8
1466 1507 7
5777 7740 3
3845 7707 8
2762 9691 4
6188 8529 8
4689 6371 6
3153 4900 6
6775 8446 10
5044 9395 1
2148 6345 10
3626 8982 7
5092 9075 5
814 3942 4
2476 4867 5
1566 9514 10
1586 1924 ...

Aoi to Manager

A11010010101001001001110000111011111001111011110010010001100000000110001100100011110111000101000000110110000011100111110010000110011100010001011100010100100011100001101111110100101011110000100011100011111000101101110100010110010000111101010100010101100010111110000111001111100110000110110101110011100...

Manager to Bitaro

10000 18990
1222 6595 2
1793 6566 1
5929 8876 2
2824 4108 1
5250 6286 6
1361 6510 9
5320 6361 3
2636 3172 8
1466 1507 7
5777 7740 3
3845 7707 8
2762 9691 4
6188 8529 8
4689 6371 6
3153 4900 6
6775 8446 10
5044 9395 1
2148 6345 10
3626 8982 7
5092 9075 5
814 3942 4
2476 4867 5
1566 9514 10
1586 1924 ...

Bitaro to Manager

768
4329 6124 1559 1450 803 13507 16941 8073 10753 2604 5985 6828 3936 2960 13856 16505 7100 5872 16039 14523 13105 8996 18161 13768 11537 85 12347 3290 592 10669 13032 10439 3600 3310 11371 16452 1222 11609 1863 2020 2602 15019 3410 3818 11986 9955 6018 16340 4743 10875 5601 18731 13891 8859 2969 1...

Manager to Checker

1.00

result:

points 1.0

Test #7:

score: 100
Accepted
time: 40ms
memory: 8800kb

Manager to Aoi

10000 19800
4973 9017 744216245256
2815 2986 744216245256
5906 7380 744216245256
1150 3616 744216245256
721 3879 744216245256
725 9926 744216245256
3443 8409 744216245256
156 8497 744216245256
2517 7006 744216245256
8992 9068 744216245256
977 2296 744216245256
5967 9998 744216245256
7940 8426 744216...

Aoi to Manager

A11001010011100111011111000010001100001010110101100101010101100101010100110101101001000000101011100101101010110100011011000100111001110001101001000011000100001001000110011001101010101001010111011111100110100110101111110001111100001111001100110110110000001110110011000001011110110111010101111011010111...

Manager to Bitaro

10000 19800
4973 9017 744216245256
2815 2986 744216245256
5906 7380 744216245256
1150 3616 744216245256
721 3879 744216245256
725 9926 744216245256
3443 8409 744216245256
156 8497 744216245256
2517 7006 744216245256
8992 9068 744216245256
977 2296 744216245256
5967 9998 744216245256
7940 8426 744216...

Bitaro to Manager

191
6301 3573 5976 7616 19571 10429 12464 16792 6195 18511 6615 13361 18730 12460 9043 953 559 5957 2548 4392 13193 12218 6823 3060 1258 14618 16533 3457 8198 14339 6248 16065 13116 9292 7304 19000 18074 17003 4170 4663 17128 10577 2779 16830 1187 14414 463 13122 9295 11237 6330 10349 11272 10441 16...

Manager to Checker

1.00

result:

points 1.0

Test #8:

score: 100
Accepted
time: 43ms
memory: 8616kb

Manager to Aoi

10000 18990
1622 6352 820417700969
3874 4023 820417700969
4352 6514 820417700969
1224 6163 820417700969
2021 8484 820417700969
6391 7837 820417700969
3960 6352 820417700969
3742 4058 820417700969
2693 5253 820417700969
6677 9751 820417700969
363 4101 820417700969
6262 7192 820417700969
902 9347 8204...

Aoi to Manager

A11010110001111111101101001011011101110110111010111101111101011010101001110110000011101101111001110010010000100110101110001101001101000110010011000101110011111001110001001101100011101000000010000000110101011001110011010001101111101000111111010010001011001001100111111001000000011000110000010011010000...

Manager to Bitaro

10000 18990
1622 6352 820417700969
3874 4023 820417700969
4352 6514 820417700969
1224 6163 820417700969
2021 8484 820417700969
6391 7837 820417700969
3960 6352 820417700969
3742 4058 820417700969
2693 5253 820417700969
6677 9751 820417700969
363 4101 820417700969
6262 7192 820417700969
902 9347 8204...

Bitaro to Manager

895
16036 18852 15114 15098 3378 277 5325 4819 3874 11164 5370 13533 3159 2026 5086 2248 8464 12394 3444 796 7044 15077 13003 4042 12579 4345 14301 6640 142 848 11701 15431 4528 18293 7399 14081 18857 14371 3643 581 15048 7114 9641 3094 6329 7862 16961 1263 18226 1279 6088 6299 18482 15030 6524 1162...

Manager to Checker

1.00

result:

points 1.0

Test #9:

score: 100
Accepted
time: 49ms
memory: 8176kb

Manager to Aoi

10000 14998
7181 8150 337018073036
5588 9328 337018073036
6216 9493 337018073036
3491 6317 337018073036
3554 7886 337018073036
6458 7580 337018073036
6731 9117 337018073036
1549 6762 337018073036
1667 9259 337018073036
4233 5288 337018073036
47 1142 337018073036
2957 7230 337018073036
3555 7538 3370...

Aoi to Manager

A10111110110110001111010100111100110110000000011001001100101000110010100101011010010111110011110101010111111010111000110111001011101010111110110011111010010000111001001011001110011011111100010001111010001100100100000110101111000011000001101000010110010001000000100001010000110100101100111000010110110...

Manager to Bitaro

10000 14998
7181 8150 337018073036
5588 9328 337018073036
6216 9493 337018073036
3491 6317 337018073036
3554 7886 337018073036
6458 7580 337018073036
6731 9117 337018073036
1549 6762 337018073036
1667 9259 337018073036
4233 5288 337018073036
47 1142 337018073036
2957 7230 337018073036
3555 7538 3370...

Bitaro to Manager

3561
5418 2513 2698 12606 1206 13508 12370 3597 672 6023 12660 10377 9507 12575 9875 12140 9508 1434 764 13401 4134 13669 11236 351 5043 3731 12250 2670 3759 5407 9496 7610 4840 10668 13330 11094 2514 3120 11099 2870 1047 2109 8002 4441 12459 9331 4192 12388 3200 8207 3887 1667 9094 13950 12031 1339...

Manager to Checker

1.00

result:

points 1.0

Test #10:

score: 100
Accepted
time: 23ms
memory: 8712kb

Manager to Aoi

10000 17496
319 6057 231276494450
194 836 231276494450
91 3525 231276494450
4996 5932 231276494450
4390 8231 231276494450
451 3597 231276494450
1772 7167 231276494450
3309 9098 231276494450
4184 9460 231276494450
6095 6892 231276494450
3134 7826 231276494450
4363 5771 231276494450
9713 9971 23127649...

Aoi to Manager

A11010111000000001011011100010010010011010101001001011110001011010011100010111100000111110111010010110111000011000011101010110001000011110000111000001110010101000111011001000100010011110010110100010001101101110100110111100100001001001100001000100101011010000011000011110100100111100001111100000110000...

Manager to Bitaro

10000 17496
319 6057 231276494450
194 836 231276494450
91 3525 231276494450
4996 5932 231276494450
4390 8231 231276494450
451 3597 231276494450
1772 7167 231276494450
3309 9098 231276494450
4184 9460 231276494450
6095 6892 231276494450
3134 7826 231276494450
4363 5771 231276494450
9713 9971 23127649...

Bitaro to Manager

93
15711 2502 10059 17015 3261 5965 7667 1673 10160 213 5143 6443 851 5278 15256 7820 14677 3746 5557 3808 15427 13372 7727 1648 8662 10384 12105 553 4961 9325 572 17116 4510 5933 3495 5348 16363 9025 682 17356 15012 11567 12315 2080 2613 13603 11748 16681 4698 10174 889 14572 2821 5275 14404 1657 7...

Manager to Checker

1.00

result:

points 1.0

Test #11:

score: 100
Accepted
time: 42ms
memory: 8904kb

Manager to Aoi

10000 19800
4304 4462 882897222787
5382 7500 882897222787
962 6651 882897222787
803 5902 882897222787
1695 6018 882897222787
2985 3367 882897222787
3423 8424 882897222787
7666 9680 882897222787
3853 6722 882897222787
5669 6023 882897222787
1823 7904 882897222787
2295 3789 882897222787
6869 7999 8828...

Aoi to Manager

A10010100000101100000100100001110000011111011101110001011101101110111110110100011000111011101010010111111010100000100111011110100011001110100101000101001000111101100110001101000000110110101000011111001111001010101110110001010110010000110010010100011001011010010001110011001110011001001001100111010000...

Manager to Bitaro

10000 19800
4304 4462 882897222787
5382 7500 882897222787
962 6651 882897222787
803 5902 882897222787
1695 6018 882897222787
2985 3367 882897222787
3423 8424 882897222787
7666 9680 882897222787
3853 6722 882897222787
5669 6023 882897222787
1823 7904 882897222787
2295 3789 882897222787
6869 7999 8828...

Bitaro to Manager

132
9278 17331 19021 7308 19413 9778 841 19690 14418 12441 9177 9458 16865 13305 15627 9750 3982 10986 7711 17676 16652 16580 4619 6882 7185 561 17640 15841 19669 11193 13317 2648 9336 2009 9363 8893 10955 4042 384 10164 5117 1867 15553 7828 17429 10004 10918 13785 583 13623 16956 7607 7912 16826 17...

Manager to Checker

1.00

result:

points 1.0

Test #12:

score: 100
Accepted
time: 38ms
memory: 8848kb

Manager to Aoi

10000 18990
169 884 680406503656
4434 9849 787022834064
1087 4432 681820113090
2532 7125 977323714358
3364 7989 385846050261
3993 5183 353586963631
1616 6104 628368624184
9193 9938 651704251116
3101 5666 957884906802
6002 6310 848394037924
1377 2374 682675277252
883 1204 126103508080
9297 9653 69965...

Aoi to Manager

A11101010110110000110001000110010100000110100101001001111111001110001001111010110011011100001001100111101101110001111010111110001110000001001111010110001100100100000101001111101000111100111000101011110101101110100110111110000000110111010000100010111001010100110110001011100100010110001100011001001000...

Manager to Bitaro

10000 18990
169 884 680406503656
4434 9849 787022834064
1087 4432 681820113090
2532 7125 977323714358
3364 7989 385846050261
3993 5183 353586963631
1616 6104 628368624184
9193 9938 651704251116
3101 5666 957884906802
6002 6310 848394037924
1377 2374 682675277252
883 1204 126103508080
9297 9653 69965...

Bitaro to Manager

785
14721 16369 18789 9397 18720 9195 1463 16074 16941 1098 11378 15942 9308 6063 5397 8102 6879 16587 11680 3512 5164 15588 10292 6762 11085 12801 13316 305 9319 4569 15629 13662 9531 1804 11029 16742 13617 8454 14246 11467 16921 12461 12135 2191 10232 18317 8281 14352 8950 4359 8271 1460 8615 1457...

Manager to Checker

1.00

result:

points 1.0

Test #13:

score: 100
Accepted
time: 40ms
memory: 8728kb

Manager to Aoi

10000 19710
3863 4836 894949714237
908 6197 665026928145
5035 6367 179339586881
3378 5121 822846218903
4670 6907 833524321196
6213 8907 516235677144
8635 9143 228260767571
3288 6283 99135975001
2607 4981 534342624058
2235 5570 617747540071
6832 8684 460966285565
1530 8473 964322006495
2809 8578 7681...

Aoi to Manager

A10110100011110000110001010001000110001110011101010000100001101001001001100101110100110000101011111001111100100010110010101101001111000001111110100011000010000001101011011001101110000101101010000000100100011000001011101000100010101010110101000001110110010101001111001001100110011010110100001111110101...

Manager to Bitaro

10000 19710
3863 4836 894949714237
908 6197 665026928145
5035 6367 179339586881
3378 5121 822846218903
4670 6907 833524321196
6213 8907 516235677144
8635 9143 228260767571
3288 6283 99135975001
2607 4981 534342624058
2235 5570 617747540071
6832 8684 460966285565
1530 8473 964322006495
2809 8578 7681...

Bitaro to Manager

99
9325 18189 1968 8887 8856 7236 11060 9928 15660 841 12983 782 1013 14593 9073 14398 12524 2401 8537 13369 5034 19528 1109 19383 5020 4928 15166 13171 18207 1332 18331 19625 17737 1446 3421 19594 6841 12077 17798 5824 4112 6021 15246 15923 1571 11647 11702 4729 6995 7224 11747 6775 7311 19448 8748...

Manager to Checker

1.00

result:

points 1.0

Test #14:

score: 100
Accepted
time: 40ms
memory: 8876kb

Manager to Aoi

10000 19710
2860 5401 587563053582
8164 8374 587563053582
5920 6442 587563053582
3186 9426 587563053582
2814 6142 587563053582
4382 5196 587563053582
7069 8544 587563053582
3177 4098 587563053582
2200 6765 587563053582
4377 8868 587563053582
2828 6311 587563053582
1178 3731 587563053582
2555 4463 58...

Aoi to Manager

A11000101111011010000000111010110010100110000011111101000110011111000111101100010010100010100001111000001010011100111001100000100101101101111010100101111100011001000010100010000111000011001011100010100011011011010110001011110111010100011100011110010101110001100101011000011110011010011001010000110101...

Manager to Bitaro

10000 19710
2860 5401 587563053582
8164 8374 587563053582
5920 6442 587563053582
3186 9426 587563053582
2814 6142 587563053582
4382 5196 587563053582
7069 8544 587563053582
3177 4098 587563053582
2200 6765 587563053582
4377 8868 587563053582
2828 6311 587563053582
1178 3731 587563053582
2555 4463 58...

Bitaro to Manager

266
5072 17225 5552 9904 8765 5994 152 13828 6865 3974 2964 10154 13710 14196 3461 16677 2471 16394 8534 889 3006 273 11673 15050 15578 13382 3956 26 18383 14924 17390 16022 19084 11285 14586 17858 4326 15792 15048 5796 3693 8550 1312 11947 5582 591 3405 14273 5221 5080 4502 10815 3025 10384 19066 1...

Manager to Checker

1.00

result:

points 1.0

Test #15:

score: 100
Accepted
time: 49ms
memory: 8436kb

Manager to Aoi

9999 16662
2737 7171 2700243266
1152 6007 189991769096
3148 7862 472459378081
5845 6507 902360913112
2799 3666 736958788368
3313 4948 133031854765
3742 6465 978073728204
5073 6829 354312499443
6979 7478 306747484673
182 3798 671234943761
1292 7846 791602968115
3271 4546 40588315774
300 4699 32137709...

Aoi to Manager

A100111111000010001110110001000011001010010000010100110110010011010001000101011001010010010101100000000001001101000111110111101111100001010110010011001101000011010010111001111001001000000011111101011011001011100100100110011010101110100101111101011010100000000100001010111111010010F

Manager to Bitaro

9999 16662
2737 7171 2700243266
1152 6007 189991769096
3148 7862 472459378081
5845 6507 902360913112
2799 3666 736958788368
3313 4948 133031854765
3742 6465 978073728204
5073 6829 354312499443
6979 7478 306747484673
182 3798 671234943761
1292 7846 791602968115
3271 4546 40588315774
300 4699 32137709...

Bitaro to Manager

3536
9742 527 11781 10105 5657 10566 10167 4284 210 3307 12876 2309 16501 12478 4371 3072 13415 10708 7659 14816 16413 1018 10435 717 8010 7411 1066 8278 12398 5017 11023 10884 4032 13683 8387 8041 14422 16165 11421 15506 6812 10007 7923 16263 10237 10531 5551 6569 7798 9989 14182 5924 3907 12325 26...

Manager to Checker

1.00

result:

points 1.0

Test #16:

score: 100
Accepted
time: 19ms
memory: 8168kb

Manager to Aoi

9999 16662
1691 6536 67788415588
3558 4502 799788719671
2784 3336 553858569737
3092 3506 500175060526
4618 8030 374412949916
3214 8117 963385819984
7955 8650 64141775528
2262 4196 471138736765
1372 1948 844388372560
4909 4930 126997188681
3751 8334 698330575580
1223 6993 678939852912
5484 7583 75215...

Aoi to Manager

A100010111101101001100001010110001111111F

Manager to Bitaro

9999 16662
1691 6536 67788415588
3558 4502 799788719671
2784 3336 553858569737
3092 3506 500175060526
4618 8030 374412949916
3214 8117 963385819984
7955 8650 64141775528
2262 4196 471138736765
1372 1948 844388372560
4909 4930 126997188681
3751 8334 698330575580
1223 6993 678939852912
5484 7583 75215...

Bitaro to Manager

3980
2001 378 13431 12086 5360 11164 15949 4815 6388 5698 16031 13906 4870 8642 10674 2929 7729 4948 8393 7321 7084 3019 12632 7358 14846 3435 12284 1467 3600 7487 12614 9064 8831 14841 11458 13707 1061 14333 265 9019 1112 6028 11677 11055 8073 13598 11273 10881 6158 9872 13486 8990 20 4798 14633 28...

Manager to Checker

1.00

result:

points 1.0

Test #17:

score: 100
Accepted
time: 79ms
memory: 8320kb

Manager to Aoi

9999 14997
19 3645 1
6475 7905 1
3442 3937 2097154
6359 7305 134217730
791 845 1
4719 9000 1
1021 2064 1
221 3765 1026
1160 7827 1
582 9824 32770
667 2957 2097154
4245 6620 1026
4543 7828 258
8824 9051 1
4090 4765 10
2714 4791 1
608 5604 67108866
31 5761 1
3542 5816 1
2354 8953 1
516 3857 131074
262...

Aoi to Manager

A11001000111110011100000001101111100001001111011010110000111001001011100110011100010001000011000101010110101010110001010010110001110101110100110111000010000111110000111110111000000000011010100111001100001111001101010011100100100011011110111100100101100100111101111010101000111111010111111111100100101...

Manager to Bitaro

9999 14997
19 3645 1
6475 7905 1
3442 3937 -1
6359 7305 134217730
791 845 1
4719 9000 1
1021 2064 1
221 3765 1026
1160 7827 1
582 9824 32770
667 2957 2097154
4245 6620 1026
4543 7828 258
8824 9051 1
4090 4765 10
2714 4791 1
608 5604 67108866
31 5761 1
3542 5816 1
2354 8953 1
516 3857 131074
2626 662...

Bitaro to Manager

6455
3303 11128 5306 1629 3425 8583 2724 799 4729 8976 803 800 13861 6642 1 7407 7673 9713 12442 2076 8842 12552 12028 621 10220 1588 10875 1426 14570 2917 10918 14230 9685 2338 8731 12467 4034 10575 14497 8097 5082 10886 942 6722 10738 5625 5458 8899 11148 1772 2187 6852 11837 13133 3613 7573 1091 ...

Manager to Checker

1.00

result:

points 1.0

Test #18:

score: 100
Accepted
time: 77ms
memory: 8320kb

Manager to Aoi

9999 14997
4625 7596 1
4387 8390 1
1667 1711 33554434
1835 6167 1
7404 8615 1
6515 9522 1
4359 9438 1
6426 8514 4098
1550 2734 3
5277 7093 3
546 3266 1
1024 3371 1
988 3213 8194
9739 9859 1
4126 7276 1
2385 4776 1
5026 6433 536870914
2562 5092 1
8681 9827 130
1556 4801 2097154
839 5947 134217730
685...

Aoi to Manager

A11010100110010101110101001111010101111100111001110110100110000110111011010111110011110001101101010011000110011001001001110111010001110000000101010111011010010001100110011110110011000101100011110111001110110111101111110100010000100010111001011110011001011100111101011101101011101001110001010001100011...

Manager to Bitaro

9999 14997
4625 7596 1
4387 8390 1
1667 1711 33554434
1835 6167 1
7404 8615 1
6515 9522 1
4359 9438 1
6426 8514 4098
1550 2734 3
5277 7093 3
546 3266 1
1024 3371 1
988 3213 8194
9739 9859 1
4126 7276 -1
2385 4776 1
5026 6433 536870914
2562 5092 1
8681 9827 130
1556 4801 2097154
839 5947 -1
6852 8153...

Bitaro to Manager

7400
3520 7179 10175 5674 3631 7836 7903 5222 2499 1703 9423 7237 3374 13419 9893 14576 14192 13663 6845 2447 146 126 8011 12100 7036 10999 5666 9907 5589 8514 2449 2183 2423 9169 12199 1126 9409 13205 5837 10078 12672 10037 1877 11201 10729 2032 9478 14588 9350 10049 6916 14415 2952 8192 719 12341 ...

Manager to Checker

1.00

result:

points 1.0

Test #19:

score: 100
Accepted
time: 47ms
memory: 9392kb

Manager to Aoi

10000 19979
987 1217 8961
1516 4933 999999980940
1217 6079 506
4933 7088 999999996824
4933 9264 999999992140
1217 6654 3960
1307 4933 999999992128
1217 4094 8891
1217 3167 3901
1172 4933 999999987452
351 4933 999999981042
755 1217 4456
1217 6771 1502
13 1217 9434
2242 4933 999999994010
4933 5941 999...

Aoi to Manager

A10010111000010111111111011110110011000110010111110010111010010000111010110010000011110010111001010101000100000110101111000000110000001011100011100110100101110000100000100100101010001010010100011001111011011001111100110101010111010001010000101000101110000101010110110000011101110101110110001010011111...

Manager to Bitaro

10000 19979
987 1217 8961
1516 4933 999999980940
1217 6079 506
4933 7088 999999996824
4933 9264 999999992140
1217 6654 3960
1307 4933 999999992128
1217 4094 8891
1217 3167 -1
1172 4933 999999987452
351 4933 999999981042
755 1217 4456
1217 6771 1502
13 1217 9434
2242 4933 999999994010
4933 5941 99999...

Bitaro to Manager

4
15671 13876 13712 11415
4
15671 13876 13712 10020
4
15671 13876 13712 11805
4
15671 13876 13712 14242
4
15671 13876 13712 3673
4
15671 13876 13712 4336
4
15671 13876 13712 2986
4
15671 13876 13712 11043
4
15671 13876 13712 18359
4
15671 13876 13712 12174
4
15671 13876 13712 12972
4
15671 13876 137...

Manager to Checker

1.00

result:

points 1.0

Test #20:

score: 100
Accepted
time: 38ms
memory: 9228kb

Manager to Aoi

10000 19984
3581 7783 4672
26 6619 999999990788
3581 3835 5680
5941 6619 999999989272
6619 9944 999999989074
6619 7266 999999985992
2496 6619 999999980360
4262 6619 999999997274
450 3581 7338
620 3581 4803
2758 3581 4692
4453 6619 999999982176
6619 9658 999999992298
2134 6619 999999980842
3581 9857 ...

Aoi to Manager

A11110111111010010100101111010000011110001001101110010001000100011000001111100000110111011000101001101000111110111100111000001101001101000110101100101010100111101110011111011101001101001110110110001110110110100001010010100001110101100011000011101011010111111111011000111110011010011011111010011010100...

Manager to Bitaro

10000 19984
3581 7783 4672
26 6619 999999990788
3581 3835 5680
5941 6619 999999989272
6619 9944 999999989074
6619 7266 999999985992
2496 6619 999999980360
4262 6619 999999997274
450 3581 7338
620 3581 4803
2758 3581 4692
4453 6619 999999982176
6619 9658 999999992298
2134 6619 999999980842
3581 9857 ...

Bitaro to Manager

4
4528 4307 7846 525
4
4528 4307 7846 4514
4
4528 4307 7846 13023
4
4528 4307 7846 11000
4
4528 4307 7846 9382
4
4528 4307 7846 4482
4
4528 4307 7846 11183
4
4528 4307 7846 12569
4
4528 4307 7846 14376
4
4528 4307 7846 4878
4
4528 4307 7846 8134
F

Manager to Checker

1.00

result:

points 1.0

Test #21:

score: 100
Accepted
time: 47ms
memory: 9256kb

Manager to Aoi

10000 19979
5846 9891 9506
4239 7175 999999996992
5772 9891 5375
9840 9891 3547
4263 9891 3786
5593 7175 999999990590
477 9891 4216
5570 7175 999999985702
7818 9891 7149
7175 9431 999999983972
7175 8822 999999983366
3130 7175 999999998088
7175 8315 999999983942
6251 7175 999999999610
7175 9843 99999...

Aoi to Manager

A10010111000010111111111011110110011000110010111110010111010010000111010110010000011110010111001010101000100000110101111000000110000001011100011100110100101110000100000100100101010001010010100011001111011011001111100110101010111010001010000101000101110000101010110110000011101110101110110001010011111...

Manager to Bitaro

10000 19979
5846 9891 9506
4239 7175 999999996992
5772 9891 5375
9840 9891 3547
4263 9891 -1
5593 7175 999999990590
477 9891 4216
5570 7175 999999985702
7818 9891 7149
7175 9431 999999983972
7175 8822 999999983366
3130 7175 999999998088
7175 8315 999999983942
6251 7175 999999999610
7175 9843 9999999...

Bitaro to Manager

4
4855 6017 4938 12225
4
4855 6017 4938 19322
4
4855 6017 4938 3419
4
4855 6017 4938 12777
4
4855 6017 4938 7772
4
4855 6017 4938 4217
4
4855 6017 4938 16651
4
4855 6017 4938 3764
4
4855 6017 4938 8927
4
4855 6017 4938 15051
4
4855 6017 4938 1908
4
4855 6017 4938 9149
4
4855 6017 4938 15998
4
4855 6...

Manager to Checker

1.00

result:

points 1.0

Test #22:

score: 100
Accepted
time: 57ms
memory: 9468kb

Manager to Aoi

10000 19979
1298 3357 999999993910
1844 6971 6378
4185 6971 2312
6971 7469 2465
1114 1298 999999989352
1298 1626 999999999668
6515 6971 4165
1298 1452 999999997484
1298 2381 999999995842
1298 8440 999999997330
1298 3042 999999995070
3136 6971 3971
1298 4549 999999997522
1298 9798 999999980710
6620 6...

Aoi to Manager

A10010111000010111111111011110110011000110010111110010111010010000111010110010000011110010111001010101000100000110101111000000110000001011100011100110100101110000100000100100101010001010010100011001111011011001111100101111101001001110101011010010110000110110101011000011100100011101110111100000001110...

Manager to Bitaro

10000 19979
1298 3357 999999993910
1844 6971 6378
4185 6971 2312
6971 7469 2465
1114 1298 999999989352
1298 1626 999999999668
6515 6971 4165
1298 1452 999999997484
1298 2381 999999995842
1298 8440 999999997330
1298 3042 999999995070
3136 6971 3971
1298 4549 999999997522
1298 9798 999999980710
6620 6...

Bitaro to Manager

4
11001 4858 7494 1001
4
11001 4858 7494 16797
4
11001 4858 7494 12497
4
11001 4858 7494 6334
4
11001 4858 7494 11276
4
11001 4858 7494 3838
4
11001 4858 7494 8868
4
11001 4858 7494 9001
4
11001 4858 7494 6342
4
11001 4858 7494 9477
4
11001 4858 7494 7855
4
11001 4858 7494 18835
4
11001 4858 7494 53...

Manager to Checker

1.00

result:

points 1.0

Test #23:

score: 100
Accepted
time: 40ms
memory: 9212kb

Manager to Aoi

10000 19985
2343 4367 5314
2636 7858 999999993062
4367 7849 8007
956 4367 5868
3615 4367 4244
2230 4367 8753
4367 9323 4907
4367 6789 3274
2636 3833 999999984370
4367 9591 9211
3291 4367 2285
2636 4864 999999985330
4367 6950 2372
2636 6749 999999987490
4367 6590 8747
4367 7082 3538
2636 4167 9999999...

Aoi to Manager

A11100011011101100110110101110011111100100011001100101001111011111111101000011110110110110000010000111100101101111111011111000110110001010011111000001010100111010001001010110011111101000000110100101110001111010011000001011100101101000000011010001001010101101111010100101001000111100000100001011111011...

Manager to Bitaro

10000 19985
2343 4367 5314
2636 7858 999999993062
4367 7849 8007
956 4367 5868
3615 4367 4244
2230 4367 8753
4367 9323 4907
4367 6789 3274
2636 3833 999999984370
4367 9591 9211
3291 4367 2285
2636 4864 999999985330
4367 6950 2372
2636 6749 999999987490
4367 6590 8747
4367 7082 3538
2636 4167 9999999...

Bitaro to Manager

4
11549 11911 5819 11807
4
11549 11911 5819 14346
4
11549 11911 5819 14899
4
11549 11911 5819 13247
4
11549 11911 5819 2628
4
11549 11911 5819 19379
4
11549 11911 5819 743
4
11549 11911 5819 4740
4
11549 11911 5819 10856
4
11549 11911 5819 13197
F

Manager to Checker

1.00

result:

points 1.0

Test #24:

score: 100
Accepted
time: 57ms
memory: 9316kb

Manager to Aoi

10000 19979
3260 9226 137
290 559 999999985780
290 2562 999999997404
290 2825 999999992882
290 5237 999999994750
290 3962 999999980246
792 3260 5446
290 6293 999999994764
3260 7346 2738
3260 8497 619
3260 9276 419
3260 5580 2026
290 1753 999999991990
3260 7129 8925
290 4291 999999985988
290 9129 999...

Aoi to Manager

A10010111000010111111111011110110011000110010111110010111010010000111010110010000011110010111001010101000100000110101111000000110000001011100011100110100101110000100000100100101010001010010100011001111011011001111100110101010111010001010000101000101110000101010110110000011101110101110110001010011111...

Manager to Bitaro

10000 19979
3260 9226 137
290 559 999999985780
290 2562 999999997404
290 2825 999999992882
290 5237 999999994750
290 3962 999999980246
792 3260 5446
290 6293 999999994764
3260 7346 2738
3260 8497 619
3260 9276 419
3260 5580 2026
290 1753 999999991990
3260 7129 8925
290 4291 999999985988
290 9129 999...

Bitaro to Manager

4
5962 80 2135 3451
4
5962 80 2135 14731
4
5962 80 2135 8862
4
5962 80 2135 7278
4
5962 80 2135 11884
4
5962 80 2135 2102
4
5962 80 2135 7838
4
5962 80 2135 3757
4
5962 80 2135 2939
4
5962 80 2135 18280
4
5962 80 2135 1679
4
5962 80 2135 7596
4
5962 80 2135 282
4
5962 80 2135 211
4
5962 80 2135 2799...

Manager to Checker

1.00

result:

points 1.0

Test #25:

score: 100
Accepted
time: 71ms
memory: 8556kb

Manager to Aoi

10000 14997
5655 9419 52
5993 9769 34
3572 6127 177869285228
1887 5931 6
5161 5181 83
3334 7604 66
2907 9148 29
3370 4356 56
3599 8420 34
8241 8701 59
4694 6002 87
969 3150 434117875548
5779 9831 42
457 5835 38
3659 7054 26
3252 9746 47
7565 9897 60
224 1450 202081252595
6041 8729 10
3539 4099 70
10...

Aoi to Manager

A10001111011011001001110100100101111011000100100101100100000111110111110101010101011111100101011111101010101101011001111101001011010010111101000111100111100100011111100010111111111000100101101100100110100000000100010100000011010100000100100000010000101100011010111110100001111100011101011001110110010...

Manager to Bitaro

10000 14997
5655 9419 52
5993 9769 34
3572 6127 177869285228
1887 5931 6
5161 5181 83
3334 7604 66
2907 9148 29
3370 4356 56
3599 8420 34
8241 8701 59
4694 6002 87
969 3150 434117875548
5779 9831 42
457 5835 38
3659 7054 26
3252 9746 47
7565 9897 60
224 1450 202081252595
6041 8729 10
3539 4099 70
10...

Bitaro to Manager

4995
10091 14552 10376 10256 6661 416 1113 3011 4709 1772 2365 10597 14585 8238 283 7289 1281 78 5891 9537 4929 11025 7604 511 8381 10439 11787 636 14918 316 11328 2348 7486 10484 7972 9835 6711 5738 5188 10215 8347 5555 2205 10876 5024 12570 8096 10407 12728 4747 1390 579 8328 219 371 9988 14793 63...

Manager to Checker

1.00

result:

points 1.0

Test #26:

score: 100
Accepted
time: 76ms
memory: 8200kb

Manager to Aoi

10000 14997
2238 7765 98
1736 2862 744495082080
498 8798 81
251 1510 69
2359 5271 54
2971 7853 164293809151
2630 7780 33
965 5256 39
3773 4740 71
765 9812 517217407539
7022 9866 72
2869 3576 37929475994
1507 5751 66
2666 9024 74
3752 7392 18
741 3855 70
5879 9535 31
125 2891 485809475517
3685 4098 1...

Aoi to Manager

A10101001010100100010100011110000010100111100010000011000111100110111000100000001011010110100101001000110100100101111101101000011110110110101011000101011101011011100111110000001010010100101001110100010011001010110110011110100100001010110001001001100101101000111001111110000010011100001001110011111100...

Manager to Bitaro

10000 14997
2238 7765 98
1736 2862 744495082080
498 8798 81
251 1510 69
2359 5271 54
2971 7853 164293809151
2630 7780 33
965 5256 39
3773 4740 71
765 9812 517217407539
7022 9866 72
2869 3576 37929475994
1507 5751 66
2666 9024 74
3752 7392 18
741 3855 70
5879 9535 31
125 2891 485809475517
3685 4098 1...

Bitaro to Manager

4993
8314 247 11079 4384 1896 13846 1795 2744 11213 2642 9353 4049 14930 11846 404 6746 11941 11383 14933 11620 8599 1559 1835 1082 12299 10037 4677 12241 11809 14688 3390 1303 14644 7325 14610 6853 10325 966 13512 7454 3517 6141 8730 9355 5615 7342 2097 1310 3251 2948 2690 8776 9532 4624 13065 6962...

Manager to Checker

1.00

result:

points 1.0

Test #27:

score: 100
Accepted
time: 1ms
memory: 4336kb

Manager to Aoi

20 60
7 15 317562551049
1 19 39376870228
6 7 487622059846
3 17 849773554130
2 15 373053376031
3 12 680382064333
10 16 164768327923
4 14 444051379095
17 19 978830780347
9 15 172585795681
5 13 329173905006
8 10 622178179306
10 11 268934386917
4 7 63999252564
12 18 20331162604
8 12 833012476435
4 18 12...

Aoi to Manager

A10101001011100101110011110010100000100100101010101110100011000000001000111001010011011110111110111011111101001000111011110001100011011011111100001000001100100110001110100101010000000001110010010111010000101001011010001010010001110100011110000111111001000101100111111110001111110101100100010001010011...

Manager to Bitaro

20 60
7 15 -1
1 19 -1
6 7 -1
3 17 -1
2 15 -1
3 12 -1
10 16 -1
4 14 -1
17 19 -1
9 15 -1
5 13 -1
8 10 -1
10 11 -1
4 7 -1
12 18 -1
8 12 -1
4 18 -1
0 11 -1
7 17 -1
7 10 -1
1 7 -1
10 18 -1
8 17 -1
13 17 -1
11 17 -1
10 14 -1
9 17 -1
0 8 -1
3 10 -1
12 13 -1
15 16 -1
15 19 -1
3 5 -1
9 12 -1
12 19 -1
1 14 -1...

Bitaro to Manager

1
27
2
17 12
2
27 22
3
27 22 26
5
27 22 26 33 34
3
17 12 25
4
17 12 25 46
4
27 22 26 33
1
39
5
27 22 26 33 29
4
27 22 18 13
3
27 22 3
5
27 22 26 33 14
6
27 22 26 33 34 53
1
17
1
55
F

Manager to Checker

1.00

result:

points 1.0

Test #28:

score: 100
Accepted
time: 39ms
memory: 8856kb

Manager to Aoi

8000 20000
2289 3585 1
3947 4324 3
1899 1971 2
199 4885 5
1177 1298 6
3723 4429 6
174 3573 8
6004 7209 4
1032 2504 10
953 1401 10
827 5349 7
1320 2120 2
2385 4615 3
5891 7569 6
2227 7559 5
531 4045 10
2192 3070 8
2413 7832 10
2553 7445 6
379 3231 7
5930 6691 3
5216 5695 3
1442 2711 8
550 4890 10
136...

Aoi to Manager

A10011000000111100110101000101110001101101101101011000101011001111110101000111100001000101010100000011100111100001110101100001101011111010000100110000001011000100110101111010010000011001001000111111000011101110011111101011101010110000100100011010101010010101101011111001000010010011010000100001010111...

Manager to Bitaro

8000 20000
2289 3585 1
3947 4324 3
1899 1971 2
199 4885 5
1177 1298 6
3723 4429 6
174 3573 8
6004 7209 4
1032 2504 10
953 1401 10
827 5349 7
1320 2120 2
2385 4615 3
5891 7569 6
2227 7559 5
531 4045 10
2192 3070 8
2413 7832 10
2553 7445 6
379 3231 7
5930 6691 3
5216 5695 3
1442 2711 8
550 4890 10
136...

Bitaro to Manager

295
1476 16884 5440 14303 7499 10825 6576 391 11238 6307 14396 263 11076 14469 16013 17782 3879 5876 11661 11294 16707 5644 16839 17096 14282 18387 18332 19967 5836 4685 14250 4975 13022 13595 10243 14904 9969 9817 29 8269 17738 7613 10206 5224 14461 2659 7199 813 10823 13067 17983 19724 4834 13565 ...

Manager to Checker

1.00

result:

points 1.0

Test #29:

score: 100
Accepted
time: 19ms
memory: 7212kb

Manager to Aoi

10000 11293
551 4690 45131199849
6943 7821 45131199849
3667 4147 45131199849
6169 9144 45131199849
5364 5859 45131199849
267 5528 45131199849
3557 9297 45131199849
7684 9310 45131199849
4068 7853 45131199849
5481 8282 45131199849
7950 9630 45131199849
625 4796 45131199849
2851 5600 45131199849
4169 ...

Aoi to Manager

A10111000111101101100001110100100110000100000111010101100001001100011001101011101100100111101101001101101001001100101100000101100000111100000000110101001001100011100101010101111010000101111101000111010110001001101100111010100101000010000010011101010000010000010101100111100000010011010110010101100001...

Manager to Bitaro

10000 11293
551 4690 45131199849
6943 7821 45131199849
3667 4147 45131199849
6169 9144 45131199849
5364 5859 45131199849
267 5528 45131199849
3557 9297 45131199849
7684 9310 45131199849
4068 7853 45131199849
5481 8282 -1
7950 9630 45131199849
625 4796 45131199849
2851 5600 45131199849
4169 6905 4513...

Bitaro to Manager

1960
7986 5057 701 4780 3393 1197 9608 9589 2632 10255 10793 2489 5063 9120 4519 3960 10433 1035 1852 4887 5623 7973 4084 7814 9456 9135 3588 9820 3454 6630 9189 1734 7846 10723 647 4732 1131 10091 8165 4475 6018 10633 10373 4722 7832 5644 10702 2726 9303 3623 10730 4595 9424 6776 8943 6200 6425 442...

Manager to Checker

1.00

result:

points 1.0

Test #30:

score: 100
Accepted
time: 40ms
memory: 8860kb

Manager to Aoi

10000 20000
6507 8752 115938835182
3236 5081 228514569919
4295 7043 261992984646
3381 8935 504916284419
3353 5765 965128462385
2373 6576 296983997093
1286 3902 576879124296
439 9432 612270914842
3141 5724 829671969141
811 990 979928138393
2029 5786 362010721171
1103 1411 177025375989
5087 5868 24059...

Aoi to Manager

A10101100010100000010010111011111101110011000000110010001111010110001010110001111000011101001100111010001111101111100000100001001000100000101110010110000000110011011000011101111000001111000010111100111001000010111000111111110001001100011110011011110000000011010100000000101011110111110111110101000101...

Manager to Bitaro

10000 20000
6507 8752 115938835182
3236 5081 228514569919
4295 7043 261992984646
3381 8935 504916284419
3353 5765 965128462385
2373 6576 296983997093
1286 3902 576879124296
439 9432 612270914842
3141 5724 829671969141
811 990 979928138393
2029 5786 362010721171
1103 1411 177025375989
5087 5868 24059...

Bitaro to Manager

1627
10469 13988 17335 13444 15886 9777 9866 5203 2612 886 13953 2990 6421 231 12649 8328 9763 4496 10914 7606 3632 5007 10870 15443 13738 3315 1550 17020 11190 19367 9625 5391 5288 19574 6435 14721 10836 16576 705 1757 1582 10630 13907 8423 10555 19682 16456 17230 8291 1589 2970 9800 14726 2441 640...

Manager to Checker

1.00

result:

points 1.0

Test #31:

score: 100
Accepted
time: 26ms
memory: 9116kb

Manager to Aoi

10000 20000
8520 9476 334637750745
4498 5651 755026579725
2549 6618 977073766559
983 3512 671673395168
4358 5915 982875402522
3251 9943 32183831496
5033 5216 641894978288
1974 3527 94421090777
2000 5162 394050575861
1048 6453 849066608190
3123 3725 334126229473
3387 6588 507001948130
4700 6355 87983...

Aoi to Manager

A10011011101000101100000100000110000001000010101101101001000001011011111101111110110000001011001100011100101001000101111010011011011101010011111011111000001010001000101101000011011000100100111001001001001010011011101010101001010000000100111010110101000001111100100100110001100110110011011111001010000...

Manager to Bitaro

10000 20000
8520 9476 334637750745
4498 5651 755026579725
2549 6618 977073766559
983 3512 671673395168
4358 5915 982875402522
3251 9943 32183831496
5033 5216 641894978288
1974 3527 94421090777
2000 5162 394050575861
1048 6453 849066608190
3123 3725 334126229473
3387 6588 507001948130
4700 6355 87983...

Bitaro to Manager

476
8132 7711 8406 5492 2498 15081 16804 1839 7795 8708 12351 19964 2500 4399 2503 3562 16327 5865 14112 6334 6872 5721 11275 8477 2129 7819 13453 13381 6370 3198 13161 8974 10264 17468 15687 4007 12119 8657 4013 342 6130 17027 15563 10664 12060 19115 14644 12736 1775 15400 10933 2989 10537 2867 936...

Manager to Checker

1.00

result:

points 1.0

Test #32:

score: 100
Accepted
time: 46ms
memory: 9020kb

Manager to Aoi

10000 20000
4183 8400 291005633175
288 1645 250093658035
729 4920 827020550250
404 5355 533378832807
262 8240 322774045908
3571 4589 525146473951
1785 7574 130889273927
4056 9321 421370627822
940 6968 828513826935
2699 5049 795726458470
6636 7633 899479949252
228 1234 976499492092
2258 4893 84401749...

Aoi to Manager

A10111101001101000110111101001101011101100010110110110110110011111001100101100101001111010100110000010010111101100011001010010110001100011100010000100010001000101110100101011010010100100110101101101000111111111101101101001000001110010101101101011101110100110110000000111010110110100101000101011101001...

Manager to Bitaro

10000 20000
4183 8400 291005633175
288 1645 250093658035
729 4920 827020550250
404 5355 533378832807
262 8240 322774045908
3571 4589 525146473951
1785 7574 130889273927
4056 9321 421370627822
940 6968 828513826935
2699 5049 795726458470
6636 7633 899479949252
228 1234 976499492092
2258 4893 84401749...

Bitaro to Manager

34
16446 11059 3324 9955 12418 8351 4490 6410 19958 624 13099 1668 17988 714 12275 15168 2739 14143 5025 15863 5321 5678 16910 2885 3614 19371 13484 3413 14264 7396 2382 5489 1361 12175
39
16446 11059 3324 9955 12418 8351 4490 6410 19958 16255 1364 11456 1720 11191 6690 3576 5958 5479 1170 13212 788...

Manager to Checker

1.00

result:

points 1.0

Test #33:

score: 100
Accepted
time: 44ms
memory: 8636kb

Manager to Aoi

10000 18728
200 6258 398886170065
5891 8497 815552967149
1801 5002 583265680608
5176 8140 715970768840
3047 6082 832262767074
0 7346 489376585223
2125 3126 594322964690
8731 9921 525369187576
1116 9846 421567512491
6074 9625 146559871290
0 7287 646836529819
724 7939 579485314540
787 2685 65010822729...

Aoi to Manager

A11100001011100010010001010101111110001100110000101110111111111000000000000001010001100F

Manager to Bitaro

10000 18728
200 6258 398886170065
5891 8497 815552967149
1801 5002 583265680608
5176 8140 715970768840
3047 6082 832262767074
0 7346 489376585223
2125 3126 594322964690
8731 9921 525369187576
1116 9846 421567512491
6074 9625 146559871290
0 7287 646836529819
724 7939 579485314540
787 2685 65010822729...

Bitaro to Manager

35
17102 922 15510 14403 17166 1080 15165 2073 1672 10892 7553 9100 16662 14112 18397 13799 1239 4009 11070 7385 4874 5041 213 8083 5006 13875 7318 11739 10232 3483 8946 12099 16650 12712 6613
41
17102 922 15510 14403 17166 1080 15165 2073 1672 10892 7553 9100 16662 14112 18397 13799 1239 4009 11070...

Manager to Checker

1.00

result:

points 1.0

Test #34:

score: 100
Accepted
time: 47ms
memory: 9192kb

Manager to Aoi

10000 20000
1161 7089 9
1566 4319 6
3874 9293 8
5810 8601 5
6197 6666 9
384 3767 10
106 4798 6
3423 7412 2
4062 4631 10
1089 5042 7
4330 6231 10
1669 2778 10
3267 4225 1
641 8072 3
5482 9266 8
863 5792 7
6359 9255 6
6534 7369 2
1406 2200 4
5052 5214 10
6921 8767 1
407 9971 5
1984 9030 1
3019 8884 10...

Aoi to Manager

A10010110011100111000011000011001100110101010100111000101001110111000010111111000101010010101011100011101101100010011011000011000100011100000000111110000010001101011000010001111101000001101101000101100010110010011110101110100101101110100001110001010011000101111000011100100101011001010101010000000011...

Manager to Bitaro

10000 20000
1161 7089 9
1566 4319 6
3874 9293 8
5810 8601 5
6197 6666 9
384 3767 10
106 4798 6
3423 7412 2
4062 4631 10
1089 5042 7
4330 6231 10
1669 2778 10
3267 4225 1
641 8072 3
5482 9266 8
863 5792 7
6359 9255 6
6534 7369 2
1406 2200 4
5052 5214 10
6921 8767 1
407 9971 5
1984 9030 1
3019 8884 10...

Bitaro to Manager

2706
5059 18911 3933 3886 8352 18086 2457 17523 8511 3703 18627 6760 17868 19521 680 3996 10171 19928 4220 19623 5453 2733 17400 1210 11745 7803 8889 14559 6209 7138 17145 19012 9277 8817 6304 8438 2959 17597 14765 13034 15167 8306 414 3365 9659 64 17966 13744 15120 5815 7151 516 4867 14580 6467 517...

Manager to Checker

1.00

result:

points 1.0

Test #35:

score: 100
Accepted
time: 47ms
memory: 8960kb

Manager to Aoi

10000 20000
2201 9756 128058997843
3623 7566 128058997843
2312 9638 128058997843
4946 9530 128058997843
2599 9107 128058997843
381 4603 128058997843
6684 7659 128058997843
1589 9642 128058997843
520 3176 128058997843
177 8936 128058997843
6558 9924 128058997843
1840 5558 128058997843
1797 5003 12805...

Aoi to Manager

A10100111110010101001110000111101111010001011111011001001011011001100011100100010011111001011101110010000000100100111110100111101110011101001000001110111011110010011010100100111000110101100110001010001101101101001101100100000101111110101010101001011101110101100000010011111100011010000101110100001010...

Manager to Bitaro

10000 20000
2201 9756 128058997843
3623 7566 128058997843
2312 9638 128058997843
4946 9530 128058997843
2599 9107 128058997843
381 4603 128058997843
6684 7659 128058997843
1589 9642 128058997843
520 3176 128058997843
177 8936 128058997843
6558 9924 128058997843
1840 5558 128058997843
1797 5003 12805...

Bitaro to Manager

1324
14898 1615 13433 12119 10848 10801 12671 3652 7162 16198 5073 6761 7330 7690 8049 15038 19183 3431 6837 1680 4177 9748 6176 16472 5578 3010 19730 12668 3309 10425 17239 5511 10934 8965 11738 6407 5256 11763 12523 14118 11583 1353 6237 1369 7023 18661 13968 11908 41 7572 7181 11523 3755 18874 14...

Manager to Checker

1.00

result:

points 1.0

Test #36:

score: 100
Accepted
time: 47ms
memory: 8984kb

Manager to Aoi

10000 20000
5172 8490 680447840914
3211 5703 680447840914
1291 2661 680447840914
1054 7617 680447840914
6983 9180 680447840914
2857 7558 680447840914
7200 7247 680447840914
300 4648 680447840914
6649 8949 680447840914
1729 2128 680447840914
1233 1481 680447840914
119 915 680447840914
4361 5031 68044...

Aoi to Manager

A11101011010110010101000000011001000101001111001000111100111011011001100101011011011101110011001111001010101010001100001010101010101110001110000100100000100010001000110100101010110111100101000100010001010100000001000010011001100001001011010000111011000110010111111010101100111110011101000101010011010...

Manager to Bitaro

10000 20000
5172 8490 680447840914
3211 5703 680447840914
1291 2661 680447840914
1054 7617 680447840914
6983 9180 680447840914
2857 7558 680447840914
7200 7247 680447840914
300 4648 680447840914
6649 8949 680447840914
1729 2128 680447840914
1233 1481 680447840914
119 915 680447840914
4361 5031 68044...

Bitaro to Manager

1776
4547 18170 9695 8244 2241 14024 2775 6491 12743 14520 4904 18 11894 4332 8945 14035 6294 1878 1333 6630 16385 8107 7394 8519 5663 2011 10162 17453 13865 16765 812 7008 6160 12082 4073 2116 193 1289 17741 2295 8310 10449 10407 14886 3424 12164 15920 12219 2787 10028 2028 3052 19601 8164 17553 15...

Manager to Checker

1.00

result:

points 1.0

Test #37:

score: 100
Accepted
time: 19ms
memory: 6592kb

Manager to Aoi

8000 7999
5936 6234 10
3702 4202 5
3991 6591 2
1358 5460 7
1587 5683 9
238 1804 10
3019 3029 10
414 2600 5
5311 7623 6
5016 7579 1
3042 5161 5
1009 5905 1
2090 6395 4
5370 5384 2
2667 6609 6
4912 6505 4
895 2176 7
3051 3055 2
2349 2900 8
4710 7265 3
312 2736 8
5792 6473 3
2671 3898 10
2904 7296 8
86...

Aoi to Manager

A10001110010111001010101101110100101010001111101011001001110000001110001001001001001001001001001001001001000110000100001001110001001001000001001001110000001001001001110001001100001001001001001100110001000001110001001000001110001001100001110001001110001001001001001001001110001001110110001100001001001...

Manager to Bitaro

8000 7999
5936 6234 10
3702 4202 -1
3991 6591 2
1358 5460 7
1587 5683 9
238 1804 10
3019 3029 10
414 2600 5
5311 7623 6
5016 7579 1
3042 5161 5
1009 5905 1
2090 6395 4
5370 5384 2
2667 6609 6
4912 6505 4
895 2176 7
3051 3055 2
2349 2900 8
4710 7265 3
312 2736 8
5792 6473 3
2671 3898 10
2904 7296 8
8...

Bitaro to Manager

672
7358 7548 7803 6035 5199 1675 2922 5359 7405 2880 6244 6185 7736 4803 1747 4995 5080 2851 5940 3661 3227 6498 1065 5169 4132 150 4520 1819 5838 3035 547 807 5913 1121 3228 730 4048 3424 5138 6110 3969 645 7594 7524 3847 7976 2647 3434 2124 754 7124 6128 3784 6473 7076 5882 5105 2909 7686 4644 81...

Manager to Checker

1.00

result:

points 1.0

Test #38:

score: 100
Accepted
time: 47ms
memory: 7020kb

Manager to Aoi

10000 9999
2780 7175 1000000000000
7873 8136 1000000000000
2855 5512 1000000000000
2063 2852 1000000000000
2395 7989 1000000000000
1436 3589 1000000000000
4356 4782 1000000000000
8716 8795 1000000000000
1038 9307 1000000000000
3458 9624 1000000000000
7227 7320 1000000000000
2643 6797 1000000000000
5...

Aoi to Manager

A11011101001100010101000001101010101000011010110001111001011000100000001111001001010011111101011111010000110100110100101101101101101111010110100000101010110011010100101011001000101111001010010101100101001010111110101000110101001000011110100101101110110010000111000110100111100111111011111100001000000...

Manager to Bitaro

10000 9999
2780 7175 1000000000000
7873 8136 1000000000000
2855 5512 1000000000000
2063 2852 1000000000000
2395 7989 1000000000000
1436 3589 1000000000000
4356 4782 1000000000000
8716 8795 1000000000000
1038 9307 1000000000000
3458 9624 1000000000000
7227 7320 1000000000000
2643 6797 1000000000000
5...

Bitaro to Manager

4432
3112 5928 7521 2747 8041 6521 6129 6520 2759 1074 4750 3364 6370 14 7172 6117 4471 3404 9873 1608 7700 5318 1000 6042 6572 8344 6834 1807 94 1498 9702 7613 6361 2138 2703 4868 4877 5562 3583 6327 3259 2550 5628 6687 6426 1938 9303 831 4173 4736 4422 7187 9335 6234 5456 4201 8798 8637 4324 1676 ...

Manager to Checker

1.00

result:

points 1.0

Test #39:

score: 100
Accepted
time: 46ms
memory: 6936kb

Manager to Aoi

10000 9999
1138 3176 2
3748 8386 10
2394 8076 5
265 7931 6
781 5088 5
1817 6680 2
6899 8422 7
1181 4928 3
2397 6124 10
3573 9598 8
688 5951 5
2353 7310 9
1096 8257 3
4604 5551 3
389 2236 6
673 5777 8
239 9662 10
9044 9627 6
771 5729 2
6620 7013 7
1233 1730 3
2543 9348 5
4267 8251 3
5243 9915 4
6333 ...

Aoi to Manager

A11111101010110011011000100101000001000111100100010001101101011011001000110111101011001101010100001001010111110100100001110101101000101001001000111110011011101101101101101001011110111110110110100101111010010111011011011010001111011101110001001011100001110010001100110110011110010100001100111100110001...

Manager to Bitaro

10000 9999
1138 3176 2
3748 8386 10
2394 8076 5
265 7931 6
781 5088 5
1817 6680 2
6899 8422 7
1181 4928 3
2397 6124 10
3573 9598 8
688 5951 5
2353 7310 9
1096 8257 3
4604 5551 3
389 2236 6
673 5777 8
239 9662 10
9044 9627 6
771 5729 2
6620 7013 7
1233 1730 3
2543 9348 5
4267 8251 3
5243 9915 4
6333 ...

Bitaro to Manager

7424
3180 8172 5585 5190 5012 9539 3605 1419 2801 8679 3254 5487 9455 3143 2139 3648 6192 9032 7035 8031 2156 2766 423 373 701 7815 2249 1503 7230 661 267 334 4040 7479 8742 598 5714 5488 7842 9933 3014 9312 9372 2534 7673 9380 4595 8799 8433 1240 2536 8249 6195 9414 1179 7787 2297 4212 7148 7173 23...

Manager to Checker

1.00

result:

points 1.0

Test #40:

score: 100
Accepted
time: 8ms
memory: 6896kb

Manager to Aoi

10000 9999
6361 8712 468301247396
5635 8015 28385549824
88 3943 69990241976
2868 5851 614029362963
3719 8087 108870639934
3852 8082 128917433863
4306 6630 877569701429
3807 5683 547532461516
3343 4574 270557262192
2388 9226 732400048012
1146 3940 948151519325
7722 8081 570500138211
6481 9653 5711754...

Aoi to Manager

A1001100101111000110011000100001101100111111001101000111101000110001011000100001000111011111110111111010010010111001001111011000111000110101110111101110100011000010011000000100111101111110F

Manager to Bitaro

10000 9999
6361 8712 468301247396
5635 8015 28385549824
88 3943 69990241976
2868 5851 614029362963
3719 8087 108870639934
3852 8082 128917433863
4306 6630 877569701429
3807 5683 547532461516
3343 4574 270557262192
2388 9226 732400048012
1146 3940 948151519325
7722 8081 570500138211
6481 9653 5711754...

Bitaro to Manager

4823
2428 185 2812 2067 5256 1188 6289 6523 8317 3277 8083 5 1762 924 6149 5519 5803 2266 4443 8453 6986 2112 19 4117 2982 1360 8712 6822 4000 3237 629 5914 5836 7624 3369 6969 9500 7533 9807 7524 9033 6868 3157 9417 2584 7309 2497 8893 8489 9907 1931 4563 8986 6910 5418 8577 6443 7189 5058 3890 169...

Manager to Checker

1.00

result:

points 1.0

Test #41:

score: 100
Accepted
time: 49ms
memory: 9116kb

Manager to Aoi

8000 20000
2680 6065 6
2095 5157 8
1705 4000 585996607640
3295 4052 585996607640
4779 5655 4
3027 3472 585996607640
2727 4080 585996607640
2219 4866 5
38 1365 5
1310 3439 3
2199 4660 585996607640
2124 7849 585996607640
3812 6084 585996607640
3749 6539 585996607640
958 7700 585996607640
584 2711 6
26...

Aoi to Manager

A10100010100100100000001101011111111110000010111100000101010011110001000101000000111111101110111001110111110100101100001010110000001001001111011100101110000011001001011001111011110100110100001000011101101001100001010000111100111111111000010010101001001100000110000001110000101110011100100010000000111...

Manager to Bitaro

8000 20000
2680 6065 6
2095 5157 8
1705 4000 585996607640
3295 4052 585996607640
4779 5655 4
3027 3472 585996607640
2727 4080 585996607640
2219 4866 5
38 1365 5
1310 3439 3
2199 4660 585996607640
2124 7849 585996607640
3812 6084 585996607640
3749 6539 585996607640
958 7700 585996607640
584 2711 6
26...

Bitaro to Manager

76
1719 18031 19396 14604 2121 19352 17840 11193 17498 1949 19549 808 16813 4950 13089 14280 6996 17987 18436 3834 15307 7501 18477 13940 13470 3192 14029 14256 2510 17888 11570 19165 3435 6337 884 10737 17911 15411 7500 12301 3373 6752 101 17310 13249 1486 11123 11947 11703 6071 7502 16192 9595 564...

Manager to Checker

1.00

result:

points 1.0

Test #42:

score: 100
Accepted
time: 40ms
memory: 9412kb

Manager to Aoi

10000 20000
5289 8646 1
5628 5962 1000000000000
4779 9937 1000000000000
6886 6945 6
8794 9711 1
6498 9865 1000000000000
5269 8350 1000000000000
2036 5921 6
7569 7711 1000000000000
513 1880 1000000000000
7053 8346 1000000000000
680 5476 9
5349 9075 3
2231 5601 6
6248 7285 1000000000000
340 2187 10000...

Aoi to Manager

A10111101011110100100000101101001111000001111111111111111111111111111110111111111111111111111111111111111111111111111111111111111001111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...

Manager to Bitaro

10000 20000
5289 8646 1
5628 5962 1000000000000
4779 9937 1000000000000
6886 6945 6
8794 9711 1
6498 9865 1000000000000
5269 8350 1000000000000
2036 5921 6
7569 7711 1000000000000
513 1880 1000000000000
7053 8346 1000000000000
680 5476 9
5349 9075 3
2231 5601 6
6248 7285 1000000000000
340 2187 10000...

Bitaro to Manager

88
12508 8093 4284 8134 10877 3202 13442 15537 9206 12947 5826 7448 7962 12273 18610 14663 16568 14504 10294 7218 6876 8698 10091 9027 17669 16667 18944 11501 15456 19875 14822 17271 12423 15758 14235 860 7736 14217 4996 800 9998 17752 16754 4085 5577 3878 10582 12071 3967 6671 14448 19572 7968 6926...

Manager to Checker

1.00

result:

points 1.0

Test #43:

score: 100
Accepted
time: 58ms
memory: 9400kb

Manager to Aoi

10000 20000
4509 4854 134234216078
974 8768 780053858347
7183 8930 684074708093
2395 5713 996186225938
2618 9178 650946966747
4859 7393 1
2420 2921 115467267694
1763 6515 4
7617 8899 1
2497 5140 944545049669
660 1017 6
1657 9647 332775785549
4570 7512 10
1768 4072 769551411136
2630 9374 7
2355 2529 ...

Aoi to Manager

A1010000101111011011111111111101011000000011010101011010100010100111011101111010001001011000100111111100001000001101011001010000011100001111000100110100001100101001111111110111010100110010010011001010111001100101110010100101000111111111000100111010000F

Manager to Bitaro

10000 20000
4509 4854 134234216078
974 8768 780053858347
7183 8930 684074708093
2395 5713 996186225938
2618 9178 650946966747
4859 7393 1
2420 2921 115467267694
1763 6515 4
7617 8899 1
2497 5140 944545049669
660 1017 6
1657 9647 332775785549
4570 7512 10
1768 4072 769551411136
2630 9374 7
2355 2529 ...

Bitaro to Manager

963
5364 554 2545 8843 18842 7085 9567 17678 8736 19471 18422 18424 13872 14261 5818 14243 19338 13824 16989 19112 7934 1826 15062 4238 16495 18071 11109 10052 6207 3853 2113 18862 12743 7590 8183 9851 12441 15025 3454 8132 760 14267 7195 1117 14913 9837 15763 7966 710 12302 4626 3152 3666 7994 922 ...

Manager to Checker

1.00

result:

points 1.0

Test #44:

score: 100
Accepted
time: 20ms
memory: 9384kb

Manager to Aoi

10000 20000
8367 9698 3
6999 9256 8
2989 5669 9
674 2307 921381785228
791 1118 161444222164
376 4544 585061876345
1773 7631 292531063765
41 603 10
5241 5275 5
687 6681 2
3214 7306 161882845912
5754 5868 42142807251
2321 9917 208674370703
393 8578 915737592534
6371 7111 322504713837
1682 9020 1
37 34...

Aoi to Manager

A1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111F

Manager to Bitaro

10000 20000
8367 9698 3
6999 9256 8
2989 5669 9
674 2307 921381785228
791 1118 161444222164
376 4544 585061876345
1773 7631 292531063765
41 603 10
5241 5275 5
687 6681 2
3214 7306 161882845912
5754 5868 42142807251
2321 9917 208674370703
393 8578 915737592534
6371 7111 322504713837
1682 9020 1
37 34...

Bitaro to Manager

146
1550 17775 3487 3214 14006 10737 15773 9057 15670 8457 9401 13710 12988 16754 11038 15980 4076 2493 11169 1969 19562 16742 14147 19981 10082 6396 9128 17520 10398 9203 6874 17645 4221 12642 6434 2508 6884 17307 334 12591 2168 16017 8431 2145 19500 14062 2382 3164 9923 16408 8094 12752 11317 1068...

Manager to Checker

1.00

result:

points 1.0

Test #45:

score: 100
Accepted
time: 20ms
memory: 6512kb

Manager to Aoi

8000 8000
2707 3492 1
43 667 6
1469 5548 7
1522 2744 5
4199 4276 4
1395 6103 10
3733 5821 1
5593 6388 4
1237 2513 10
4469 5278 9
2325 4025 8
3130 7641 10
2064 6188 3
1303 3429 6
3737 5542 2
2193 5448 2
1088 5927 2
1175 3042 7
6061 7894 4
7201 7705 3
146 3143 7
3611 5339 7
3380 3860 2
4329 7390 5
481...

Aoi to Manager

A11000100111000110111010000011100111111010011100010011101010111111110110000011110100101011000001011100010010110101010011001011100111000110110000010000110110101100110000001111001100011011011000100110100100101110000101100101111110100010101011010100111011010000010001101010000100101100100011010011010110...

Manager to Bitaro

8000 8000
2707 3492 1
43 667 6
1469 5548 7
1522 2744 5
4199 4276 4
1395 6103 10
3733 5821 1
5593 6388 4
1237 2513 10
4469 5278 9
2325 4025 8
3130 7641 10
2064 6188 3
1303 3429 6
3737 5542 -1
2193 5448 2
1088 5927 2
1175 3042 7
6061 7894 4
7201 7705 3
146 3143 7
3611 5339 7
3380 3860 2
4329 7390 5
48...

Bitaro to Manager

3619
1103 2041 7645 2320 2715 156 4459 3021 7591 4658 6825 5334 3824 5814 646 2413 3255 5039 4640 5933 1115 3672 7508 829 117 6650 1903 3443 1664 7758 6958 6294 5170 6774 7838 6153 3423 5650 1368 1772 5103 692 969 2183 7031 5779 4367 474 1807 4199 7744 4333 3995 7571 7801 5990 3545 738 7885 1025 281...

Manager to Checker

1.00

result:

points 1.0

Test #46:

score: 100
Accepted
time: 24ms
memory: 7008kb

Manager to Aoi

10000 10000
190 9062 1000000000000
3023 8074 1000000000000
2329 9160 1000000000000
498 5997 1000000000000
2188 8664 1000000000000
3893 5680 1000000000000
240 9129 1000000000000
3629 6229 1000000000000
1332 7202 1000000000000
3326 8753 1000000000000
2093 4655 1000000000000
205 825 1000000000000
3278 ...

Aoi to Manager

A10111000101111010011000111000011011100010000110010010000110101110101010001011001110101110011110100101111110100000011101000111100111100010000001100001101100011101011110000010110100111010110101111111001000001101100001011000000100101100000111011101100000110011100101111010111010101101110101011001001101...

Manager to Bitaro

10000 10000
190 9062 1000000000000
3023 8074 1000000000000
2329 9160 1000000000000
498 5997 1000000000000
2188 8664 1000000000000
3893 5680 1000000000000
240 9129 1000000000000
3629 6229 1000000000000
1332 7202 1000000000000
3326 8753 1000000000000
2093 4655 1000000000000
205 825 1000000000000
3278 ...

Bitaro to Manager

1298
4041 6877 7580 2078 2928 1271 5040 8535 4784 5588 5106 780 2729 27 3003 1747 91 6562 2938 9957 5807 6224 3666 316 802 8888 7691 3385 7475 4186 1933 6051 3444 2315 181 908 9240 9524 7129 670 2773 3564 8518 2281 3997 9325 9614 6481 4421 3539 3042 9979 538 7951 5331 2423 7056 9190 658 460 1137 869...

Manager to Checker

1.00

result:

points 1.0

Test #47:

score: 100
Accepted
time: 29ms
memory: 6944kb

Manager to Aoi

10000 10000
4635 7349 4
2835 8767 7
1158 9003 6
998 8817 5
200 4374 1
4009 5437 6
697 5386 6
7560 8145 1
1967 3799 7
3727 6435 8
3384 9739 9
5580 9726 5
1339 6529 9
5421 5700 4
1 3611 5
1936 7837 8
2850 7775 9
1066 8476 2
6946 6995 5
3265 4917 7
5970 7655 2
689 1578 6
4044 8861 7
7976 9451 8
7009 81...

Aoi to Manager

A10110000001001111101010011011110001010000101111011110000101110000100000101011000000011101011111111100011010100010010F

Manager to Bitaro

10000 10000
4635 7349 4
2835 8767 7
1158 9003 6
998 8817 5
200 4374 1
4009 5437 6
697 5386 6
7560 8145 1
1967 3799 7
3727 6435 8
3384 9739 9
5580 9726 5
1339 6529 9
5421 5700 4
1 3611 5
1936 7837 8
2850 7775 9
1066 8476 2
6946 6995 5
3265 4917 7
5970 7655 2
689 1578 6
4044 8861 7
7976 9451 8
7009 81...

Bitaro to Manager

4226
5368 2541 8834 2579 3661 5704 5789 591 2444 3328 2770 557 1125 3824 1149 2260 7515 4097 6947 5054 4296 7909 6320 7075 4634 902 933 938 7205 875 3462 7125 306 2889 1940 9259 9237 771 621 1304 806 795 3552 7924 4660 7582 3466 3808 4003 5772 4985 9761 1386 367 3422 8565 3335 26 1314 3791 787 7459 ...

Manager to Checker

1.00

result:

points 1.0

Test #48:

score: 100
Accepted
time: 1ms
memory: 4320kb

Manager to Aoi

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

Aoi to Manager

A101011001101100100100010F

Manager to Bitaro

5 7
0 4 -1
0 2 -1
2 3 -1
1 4 -1
1 2 -1
1 3 -1
3 4 -1
4
2 4 1 3
7
2 1 0 4 3 5 6
A101011001101100100100010F

Bitaro to Manager

1
1
1
0
2
1 4
2
1 2
F

Manager to Checker

1.00

result:

points 1.0

Test #49:

score: 100
Accepted
time: 1ms
memory: 4324kb

Manager to Aoi

10 42
1 3 933093946835
4 9 56274234093
4 8 87151674701
3 7 764149094680
5 7 656150986325
2 8 736326285997
0 1 227247588545
0 9 662259612898
2 3 802479502041
2 7 505150381123
2 9 816694250749
6 7 817881554876
1 9 832413898236
6 9 46922471904
3 6 659913445984
1 4 598621383945
2 5 796057911119
3 8 3428...

Aoi to Manager

A10011110001110011100111001000011010110111001101101111000010111101010111111100110010000000011111010101001011110110110101001100001110100110011000001110001101100001011111001111111111110F

Manager to Bitaro

10 42
1 3 -1
4 9 -1
4 8 -1
3 7 -1
5 7 -1
2 8 -1
0 1 -1
0 9 -1
2 3 -1
2 7 -1
2 9 -1
6 7 -1
1 9 -1
6 9 -1
3 6 -1
1 4 -1
2 5 -1
3 8 -1
4 7 -1
1 7 -1
1 8 -1
0 8 -1
5 9 -1
0 4 -1
8 9 -1
4 5 -1
1 2 -1
2 4 -1
0 7 -1
5 6 -1
0 5 -1
0 6 -1
1 5 -1
3 9 -1
3 4 -1
7 8 -1
3 5 -1
0 2 -1
6 8 -1
4 6 -1
7 9 -1
0 3 -1
...

Bitaro to Manager

1
28
4
6 32 22 33
1
37
4
6 32 22 1
2
6 32
4
6 32 22 13
3
6 32 22
1
6
5
6 32 22 1 2
F

Manager to Checker

1.00

result:

points 1.0

Test #50:

score: 100
Accepted
time: 22ms
memory: 8712kb

Manager to Aoi

200 19900
39 177 1000000000000
94 162 1000000000000
108 122 1000000000000
94 178 1000000000000
22 54 1000000000000
119 155 1000000000000
100 188 1000000000000
82 89 1000000000000
51 150 1000000000000
78 179 1000000000000
17 149 1000000000000
72 106 1000000000000
0 129 1000000000000
37 107 1000000000...

Aoi to Manager

A11110010010111110111101101011111000011101110101111111111111111111111111110111111111111111111111111111111111110011111111111111111111111111111111111111111111111111111111110011111111111111111111111111011111111111111110101111111111101111111111111111111111111111111111111111111111111111111111111111111111...

Manager to Bitaro

200 19900
39 177 1000000000000
94 162 1000000000000
108 122 1000000000000
94 178 1000000000000
22 54 1000000000000
119 155 1000000000000
100 188 1000000000000
82 89 1000000000000
51 150 1000000000000
78 179 1000000000000
17 149 1000000000000
72 106 1000000000000
0 129 1000000000000
37 107 1000000000...

Bitaro to Manager

5
7692 15625 3335 19706 9906
6
7692 15625 11744 10234 5499 2588
4
6695 6682 6496 7487
4
7692 15625 11744 13119
4
7692 2889 9991 3238
5
7692 2889 9237 2097 475
4
7692 2889 13174 7241
F

Manager to Checker

1.00

result:

points 1.0

Test #51:

score: 100
Accepted
time: 2ms
memory: 4700kb

Manager to Aoi

50 1225
7 45 1000000000000
20 22 28455312593
1 9 298785594023
11 41 513036757338
19 36 676968394256
24 49 469653140865
1 35 176410689682
18 47 228177575797
7 26 1000000000000
14 42 838636645427
7 34 1000000000000
16 44 171167544926
11 47 551575847459
32 36 1000000000000
22 28 800743517483
12 16 1000...

Aoi to Manager

A10010111000010111111111011110110011000110010111110010111010010000111010110010000011110010111001010101000100000110101111000000110000001011100011100110100101110000100000100100101010001010010100011001111011011001111100110101010111010001010000101000101110000101010110110000011101110101110110001010011111...

Manager to Bitaro

50 1225
7 45 -1
20 22 28455312593
1 9 298785594023
11 41 513036757338
19 36 676968394256
24 49 469653140865
1 35 176410689682
18 47 228177575797
7 26 -1
14 42 838636645427
7 34 -1
16 44 171167544926
11 47 551575847459
32 36 -1
22 28 800743517483
12 16 -1
6 11 442050251568
21 26 22694196394
10 49 985...

Bitaro to Manager

1
1036
3
450 436 497
1
1088
2
723 559
4
1036 819 1160 364
5
671 375 261 385 985
3
671 637 512
2
1036 157
2
671 637
4
671 375 653 513
1
671
3
671 375 252
2
671 375
1
403
2
723 685
4
671 375 261 507
F

Manager to Checker

1.00

result:

points 1.0

Test #52:

score: 100
Accepted
time: 1ms
memory: 4412kb

Manager to Aoi

100 137
13 39 64017149458
9 22 64017149458
34 39 64017149458
34 79 64017149458
45 79 64017149458
34 96 64017149458
12 29 64017149458
86 89 64017149458
46 68 64017149458
28 42 64017149458
2 44 64017149458
21 33 64017149458
75 85 64017149458
22 30 64017149458
8 17 64017149458
21 67 64017149458
87 92 6...

Aoi to Manager

A10010011001001000110000101101000111101100111001010011111101000100010110111111000111001100100110000010110100110101011000110111011111000001100001010001000101011010101111010110010110101010011110101011000110110010000010010111011100111100011110101111111011111110111010001100010100101000011110111101011001...

Manager to Bitaro

100 137
13 39 -1
9 22 -1
34 39 -1
34 79 -1
45 79 -1
34 96 -1
12 29 -1
86 89 -1
46 68 -1
28 42 -1
2 44 -1
21 33 -1
75 85 -1
22 30 -1
8 17 -1
21 67 -1
87 92 -1
80 91 -1
11 39 -1
13 21 -1
55 74 -1
19 63 -1
14 58 -1
62 73 -1
7 76 -1
34 48 -1
1 96 -1
38 99 -1
61 97 -1
7 96 -1
20 64 -1
54 69 -1
45 81 -1
2...

Bitaro to Manager

3
96 34 47
5
59 32 117 16 88
5
59 94 56 20 123
3
59 80 128
1
96
3
59 94 40
5
96 34 55 9 110
7
59 94 64 134 111 135 42
6
59 94 64 134 111 14
4
59 94 105 33
3
59 94 105
4
96 52 73 37
1
59
4
96 34 47 30
3
59 32 4
3
59 94 60
F

Manager to Checker

1.00

result:

points 1.0

Test #53:

score: 100
Accepted
time: 23ms
memory: 8704kb

Manager to Aoi

400 20000
123 299 922157940546
213 313 791701710720
170 319 136315370634
64 78 551982790475
175 276 34303838468
17 221 248624564444
140 215 618736513757
114 312 27679784573
280 317 294196103823
224 396 811949496465
13 278 694940096101
1 380 593938956859
132 258 737143943115
261 273 450811055611
116 ...

Aoi to Manager

A11011011100001101010001010010101010000101010000100011000110000001100111000100101001110001101101000000010001000000100000000110000101001111110000100010101100000011001110011010100101010100000111010001001100001000011111110110001010010000011011110110000000110001100100110010011010111111000111100110000100...

Manager to Bitaro

400 20000
123 299 922157940546
213 313 791701710720
170 319 136315370634
64 78 551982790475
175 276 34303838468
17 221 248624564444
140 215 618736513757
114 312 27679784573
280 317 294196103823
224 396 811949496465
13 278 694940096101
1 380 593938956859
132 258 737143943115
261 273 450811055611
116 ...

Bitaro to Manager

4
830 12429 18085 12745
5
14912 6557 13951 1786 17254
4
830 12663 5506 7110
7
830 12663 5506 7110 16497 7222 8305
3
830 8385 11557
6
14912 6557 13951 6686 11960 8571
7
830 12663 6313 13796 17205 2533 16145
7
14912 6557 13951 3245 6283 5934 2715
3
830 8385 15391
9
830 12663 6313 13796 9617 4907 9258 ...

Manager to Checker

1.00

result:

points 1.0

Test #54:

score: 100
Accepted
time: 14ms
memory: 7256kb

Manager to Aoi

1000 12386
170 499 818864436332
153 879 5
377 956 4
507 576 8
199 583 5
538 933 10
1 382 4
256 328 2
654 917 4
402 871 9
437 953 9
7 387 3
344 392 7
324 645 7
757 851 2
778 781 8
29 791 8
518 625 8
396 833 10
190 930 2
573 706 6
174 521 9
83 109 4
543 947 5
237 673 3
33 433 146851376968
454 571 1
56...

Aoi to Manager

A10001100010000010111010010011000010110110111101001110111101100001110011000110100100010111001100110011001010000011010101011100101011010010101011001100000100011001010001100101110110101111100111111110110000111111111000100000001000000011110111011011010010010011110000001001111101111100100001011110001001...

Manager to Bitaro

1000 12386
170 499 -1
153 879 5
377 956 4
507 576 8
199 583 5
538 933 10
1 382 4
256 328 2
654 917 4
402 871 9
437 953 9
7 387 3
344 392 7
324 645 7
757 851 2
778 781 8
29 791 8
518 625 8
396 833 10
190 930 2
573 706 6
174 521 9
83 109 4
543 947 5
237 673 3
33 433 -1
454 571 1
563 748 1
693 712 4
21...

Bitaro to Manager

4
7406 9471 11294 4329
2
3579 10261
5
7406 4471 1702 9336 10449
5
9421 10135 4451 8715 11844
3
4218 4124 6300
3
3579 7184 1253
5
7406 4471 1702 9336 6878
4
1385 11403 1923 9592
4
7406 1836 7982 237
4
1556 12087 12383 10182
5
7406 9520 10822 11085 3424
5
9421 10135 3386 12336 10071
F

Manager to Checker

1.00

result:

points 1.0

Test #55:

score: 100
Accepted
time: 30ms
memory: 7612kb

Manager to Aoi

5000 13356
2488 3640 978873832708
2269 3732 467558441793
1489 2794 472269222141
103 4654 829171087958
88 670 24115230433
427 950 732013034641
3374 3837 896295001725
58 3562 91132473068
1723 2520 274027870079
1130 3642 297564282446
1429 2914 400901796739
3101 4125 169406249298
254 3888 422750584248
2...

Aoi to Manager

A10010111010110111100000100010100010001100100000011010100111000010101111010000101011011000100001111101011010100010101100010011001001110100110101001110100110001100110000001111000001010111001110110100110010010110000011011001011001100101110001110001001110111001001000100000000011011100001000100100001101...

Manager to Bitaro

5000 13356
2488 3640 978873832708
2269 3732 467558441793
1489 2794 472269222141
103 4654 829171087958
88 670 24115230433
427 950 732013034641
3374 3837 896295001725
58 3562 91132473068
1723 2520 274027870079
1130 3642 297564282446
1429 2914 400901796739
3101 4125 169406249298
254 3888 422750584248
2...

Bitaro to Manager

12
3251 10265 12007 8895 4528 5714 10980 9041 4382 9512 1267 461
3
7198 2890 12586
4
3251 137 2690 1453
7
12733 10338 1619 12262 10266 7153 11062
4
12733 7546 294 6858
4
12733 10338 974 8536
7
12733 10338 1619 8552 5364 9290 9678
6
11802 2703 10005 3689 2203 311
8
2818 10243 489 12349 8137 1007 1160...

Manager to Checker

1.00

result:

points 1.0

Test #56:

score: 100
Accepted
time: 30ms
memory: 8984kb

Manager to Aoi

8000 20000
452 4740 620736583885
228 3315 620736583885
678 4120 620736583885
355 2442 620736583885
1629 7851 620736583885
3787 4538 620736583885
4633 4885 620736583885
2526 7094 620736583885
2183 5664 620736583885
1193 3788 620736583885
530 1768 620736583885
478 5910 620736583885
1991 2477 620736583...

Aoi to Manager

A11101100010111010110011010011001011011011101111100000110001101000110011011111111100000101000101011100011011011011111000001110001111101001001010001000101100011010011001000111101111110000000000011001011101101111100110001110101010100010010100010110100100011101101001100010001001011001010010101100100000...

Manager to Bitaro

8000 20000
452 4740 620736583885
228 3315 620736583885
678 4120 620736583885
355 2442 620736583885
1629 7851 620736583885
3787 4538 620736583885
4633 4885 620736583885
2526 7094 620736583885
2183 5664 620736583885
1193 3788 620736583885
530 1768 620736583885
478 5910 620736583885
1991 2477 620736583...

Bitaro to Manager

6
7947 18831 11736 9232 8224 10064
7
2310 3316 14970 10017 5337 9909 16699
5
2310 3316 12063 9956 2245
5
7947 18831 8852 7870 15486
6
15841 10897 16592 7631 10418 13810
6
8202 12170 4784 10773 16538 5450
7
18889 4261 17991 9158 6352 11349 5316
5
8202 3572 10605 12693 15698
5
8202 4137 7315 9067 7725
F

Manager to Checker

1.00

result:

points 1.0

Test #57:

score: 100
Accepted
time: 45ms
memory: 9304kb

Manager to Aoi

8000 20000
1874 5625 6
3245 3963 9
1145 3835 10
3095 6302 2
4414 7841 7
3536 7114 6
5773 6119 2
252 2675 9
3723 6042 3
3858 5629 9
494 4448 7
1308 5607 5
2122 5487 5
1199 7776 6
4492 7403 6
3883 5051 7
580 2920 8
1625 2036 9
6004 6233 3
1434 5007 9
142 3251 9
1034 3001 9
3407 3556 3
1768 4895 5
308 ...

Aoi to Manager

A10101001010010101110101010000010100011100101111001100101010110011111011101101000000111110011101000101101001001010001101001001011011110011011101010101111100101001100100111010011110111001000000100110000011101100110001100100000001100110011010100101101110100111010101111011100100001010010011111011101011...

Manager to Bitaro

8000 20000
1874 5625 6
3245 3963 9
1145 3835 10
3095 6302 2
4414 7841 7
3536 7114 6
5773 6119 2
252 2675 9
3723 6042 3
3858 5629 9
494 4448 7
1308 5607 5
2122 5487 5
1199 7776 6
4492 7403 6
3883 5051 7
580 2920 8
1625 2036 9
6004 6233 3
1434 5007 9
142 3251 9
1034 3001 9
3407 3556 3
1768 4895 5
308 ...

Bitaro to Manager

6
728 13512 18323 53 6833 7647
7
18532 18422 8604 4593 19604 17266 19092
11
9409 8853 12163 2468 12782 5599 2966 8763 17603 18472 19515
11
18532 18422 8604 16289 19444 14182 13202 11825 1674 4855 9422
6
9409 17105 13481 9826 19975 17820
9
18532 18422 8604 4593 19604 12276 11100 6403 8431
5
728 1163 ...

Manager to Checker

1.00

result:

points 1.0

Test #58:

score: 100
Accepted
time: 33ms
memory: 8044kb

Manager to Aoi

10000 14730
1376 9936 1000000000000
2312 8845 1000000000000
490 1604 1000000000000
36 6219 1000000000000
689 6096 1000000000000
6768 8150 1000000000000
6887 9379 1000000000000
4001 4880 1000000000000
5984 6479 1000000000000
6064 7574 1000000000000
5546 8506 1000000000000
3871 6560 1000000000000
6751...

Aoi to Manager

A10010111000010111111111011110110011000110010111110010111010010000111010110010000011110010111001010101000100000110101111000000110000001011100011100110100101110000100000100100101010001010010100011001111011011001111100110101010111010001010000101000101110000101010110110000011101110101110110001010011111...

Manager to Bitaro

10000 14730
1376 9936 1000000000000
2312 8845 1000000000000
490 1604 1000000000000
36 6219 1000000000000
689 6096 1000000000000
6768 8150 1000000000000
6887 9379 1000000000000
4001 4880 1000000000000
5984 6479 1000000000000
6064 7574 1000000000000
5546 8506 1000000000000
3871 6560 1000000000000
6751...

Bitaro to Manager

10
1169 2217 5239 11281 11052 9795 13038 5476 10002 9709
9
1169 2217 5239 11281 6130 12296 3227 11613 8073
9
1169 2217 5239 11281 6130 11190 7870 1240 12698
9
1169 4421 2620 13783 11273 4611 6628 13455 12194
9
1169 5631 2376 7544 6379 14629 9473 6751 10329
8
13495 10786 13989 7009 8554 7178 2422 116...

Manager to Checker

1.00

result:

points 1.0

Test #59:

score: 100
Accepted
time: 48ms
memory: 9220kb

Manager to Aoi

10000 20000
7375 9644 3
8320 9040 1
326 3904 7
6114 9116 9
3263 8046 10
513 7074 8
150 8833 9
521 4934 7
3157 8642 7
2304 4898 9
5416 7275 10
2668 7482 8
4960 6031 7
3500 5640 6
456 3763 5
5556 9932 7
7639 7752 5
2772 3760 6
7148 9452 10
120 7139 8
7933 9776 6
5365 7534 2
9214 9382 5
1873 9734 7
697...

Aoi to Manager

A11000110000010000000011111111000101011110100010011010110110010111001000000000001111101010000010001101111110100100100100101000110101011110011001110011011100110011111111110001011000101011011000000010110000101111111011110100000001010001111011111110111000111001111001110010011101111011110101010111010111...

Manager to Bitaro

10000 20000
7375 9644 3
8320 9040 1
326 3904 7
6114 9116 9
3263 8046 10
513 7074 8
150 8833 9
521 4934 7
3157 8642 7
2304 4898 9
5416 7275 10
2668 7482 8
4960 6031 7
3500 5640 6
456 3763 5
5556 9932 7
7639 7752 5
2772 3760 6
7148 9452 10
120 7139 8
7933 9776 6
5365 7534 2
9214 9382 5
1873 9734 7
697...

Bitaro to Manager

7
18221 15875 4015 16767 10403 10047 14259
7
18221 18621 10987 7668 16060 9045 10884
11
18221 18621 10987 7668 16060 1843 5139 6862 17731 17336 19867
10
10531 17056 14870 19958 17802 16385 409 1030 16421 5003
11
10531 17056 15912 8948 16244 7787 8147 1473 12851 15167 16598
12
10531 17056 15912 19457...

Manager to Checker

1.00

result:

points 1.0

Test #60:

score: 100
Accepted
time: 47ms
memory: 9008kb

Manager to Aoi

10000 20000
3851 4243 709564856004
41 8072 709564856004
4516 6298 709564856004
7029 7575 709564856004
325 2404 709564856004
2477 7161 709564856004
5568 7432 709564856004
2192 9841 709564856004
411 9980 709564856004
834 3735 709564856004
2431 8138 709564856004
6569 9127 709564856004
7262 7766 7095648...

Aoi to Manager

A10010111000010111111111011110110011000110010111110010111010010000111010110010000011110010111001010101000100000110101111000000110000001011100011100110100101110000100000100100101010001010010100011001111011011001111100110101010111010001010000101000101110000101010110110000011101110101110110001010011111...

Manager to Bitaro

10000 20000
3851 4243 709564856004
41 8072 709564856004
4516 6298 709564856004
7029 7575 -1
325 2404 709564856004
2477 7161 709564856004
5568 7432 709564856004
2192 9841 709564856004
411 9980 709564856004
834 3735 709564856004
2431 8138 709564856004
6569 9127 709564856004
7262 7766 709564856004
6122...

Bitaro to Manager

6
3769 2482 16503 5501 476 3259
7
14164 4428 7623 1698 4135 4070 3565
3
14164 16177 8890
6
14164 3716 7389 2322 7041 16422
8
14164 13019 10278 10732 12443 16562 14499 11018
7
14164 13019 6997 2339 18352 18613 12303
6
14164 3716 7607 11261 7 8124
7
14164 13019 6395 14469 13298 19984 8840
4
14164 1301...

Manager to Checker

1.00

result:

points 1.0

Test #61:

score: 100
Accepted
time: 48ms
memory: 9088kb

Manager to Aoi

10000 20000
8610 9007 696552543654
1419 9199 231553428401
773 8857 924376120689
2813 8893 773402083424
7339 7849 959050713162
6131 7449 529721442945
3580 9404 918811433060
631 1722 570788875097
5614 8709 830977470176
2882 7276 278904393355
2131 5261 526734958879
344 5725 798347000247
889 7265 215223...

Aoi to Manager

A10000000001001100101101001000111010001101100101110000101011001100000110101001001101100100001001100000111011111001111110100010001101000000001000110101100011101001111111111101000100101100001100101110100000010011001000111111001001110101111001010001000100010111110000110101101110011100111110001111110111...

Manager to Bitaro

10000 20000
8610 9007 696552543654
1419 9199 231553428401
773 8857 924376120689
2813 8893 773402083424
7339 7849 959050713162
6131 7449 529721442945
3580 9404 918811433060
631 1722 570788875097
5614 8709 830977470176
2882 7276 278904393355
2131 5261 526734958879
344 5725 798347000247
889 7265 215223...

Bitaro to Manager

9
12850 7160 14896 15816 11172 18633 6820 19808 2496
10
12850 19956 11259 6334 3399 2247 1180 17267 18120 16848
10
14035 11069 7611 11735 12114 4743 1633 3047 4857 4415
14
12850 7160 14896 11418 10021 8588 5316 2122 6993 19340 14171 18325 6160 14227
10
14035 1023 11390 19686 15580 8813 11075 13290 1...

Manager to Checker

1.00

result:

points 1.0

Test #62:

score: 100
Accepted
time: 44ms
memory: 8716kb

Manager to Aoi

10000 18279
6727 8837 351915655987
2305 6176 991385051031
2051 7739 609534654526
2791 3920 114310163794
1813 6951 857555571004
2289 3295 199112385488
935 8505 682744578911
7049 9167 38676222661
2738 6978 407951546578
80 554 643495393614
2998 3283 479402558124
2564 2869 434268083220
8810 9555 1514285...

Aoi to Manager

A10000010110111100001011000111111111001011111010111010001101010011100100001010110110101100011100100010111010000100111001001001111111000010001010011110001100001111010001111001101101101001001001100000111100010110110011010101001101001010101101101010010100100011110110011101000001001000111101011000001010...

Manager to Bitaro

10000 18279
6727 8837 351915655987
2305 6176 991385051031
2051 7739 609534654526
2791 3920 114310163794
1813 6951 857555571004
2289 3295 199112385488
935 8505 682744578911
7049 9167 38676222661
2738 6978 407951546578
80 554 643495393614
2998 3283 479402558124
2564 2869 434268083220
8810 9555 1514285...

Bitaro to Manager

6
15077 9896 17168 13432 9106 8340
5
1964 16639 7163 14826 2762
8
1964 16639 14709 9244 2460 6819 12081 14666
11
15077 8383 2001 12495 13265 5264 8607 15588 10832 5381 16680
8
6452 6840 9774 3799 6563 16062 16161 13675
6
15077 11266 3354 7261 10352 16731
8
1964 16639 14709 4089 11862 14307 12099 312...

Manager to Checker

1.00

result:

points 1.0

Test #63:

score: 100
Accepted
time: 54ms
memory: 9152kb

Manager to Aoi

10000 20000
8949 9743 599720880127
35 9129 79650100417
391 1356 791970480452
896 2844 498422688091
2987 9453 536928332499
842 2871 73361063178
3736 3967 243120053468
1750 9154 817250650524
7909 9606 265088709578
6396 8030 599315442383
1561 8316 995669343130
5788 7610 153663399514
1406 4698 713739182...

Aoi to Manager

A10111110001100101011000110101000000111011111011101010011111001101011001101101111111011011011101000100000011000111010110100110100100011000010100110111010000010100110000011000101010101011010000111001110010100000001000111011011101101001110000111110111000110110010110111011001101100101101010000101011101...

Manager to Bitaro

10000 20000
8949 9743 599720880127
35 9129 79650100417
391 1356 791970480452
896 2844 498422688091
2987 9453 536928332499
842 2871 73361063178
3736 3967 243120053468
1750 9154 817250650524
7909 9606 265088709578
6396 8030 599315442383
1561 8316 995669343130
5788 7610 153663399514
1406 4698 713739182...

Bitaro to Manager

11
7012 17002 3210 14987 18423 1688 1663 10798 7771 16281 16358
13
7012 17002 3210 14987 18423 13840 3822 2690 10907 2482 6519 18410 9354
12
7872 7521 3568 9968 9438 1331 14843 4132 7587 12456 10449 12469
7
10910 17247 15914 8195 8520 9488 7567
9
7872 7521 11010 16400 12257 10898 6568 4838 11322
6
6...

Manager to Checker

1.00

result:

points 1.0

Test #64:

score: 100
Accepted
time: 16ms
memory: 8292kb

Manager to Aoi

10000 16761
8029 8406 14404865209
8195 9026 79542466531
1280 5794 36928077896
6447 7121 626212747537
600 8761 732721536447
6502 8961 816975538242
3685 4260 908732486530
6142 8630 622348972786
1481 7166 81652695383
6607 8615 882796488012
3542 7489 528742477610
1575 6368 609654969285
2064 4827 3680617...

Aoi to Manager

A1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111F

Manager to Bitaro

10000 16761
8029 8406 14404865209
8195 9026 79542466531
1280 5794 36928077896
6447 7121 626212747537
600 8761 732721536447
6502 8961 816975538242
3685 4260 908732486530
6142 8630 622348972786
1481 7166 81652695383
6607 8615 882796488012
3542 7489 528742477610
1575 6368 609654969285
2064 4827 3680617...

Bitaro to Manager

10
15230 14956 11084 13266 9658 9920 16499 13440 1140 9313
F

Manager to Checker

1.00

result:

points 1.0

Test #65:

score: 100
Accepted
time: 29ms
memory: 7176kb

Manager to Aoi

10000 9999
0 1478 611197056240
0 2597 835440373289
0 5656 317075461098
0 7869 845481797540
0 3015 733604441581
0 7948 531386059044
0 2383 355087898468
0 2677 280292209120
0 2170 793007978412
0 1048 149892772613
0 9532 950281027555
0 7203 834011138253
0 121 573245802372
0 9293 976521285852
0 3586 426...

Aoi to Manager

A10001111111001111101111001000111011010000100011011100101111110011001111001011001100111011011111011111001101101011101100111110000000011010001001010110011101100110110010110010100000010100011110100001011001100010010100101010011110001010000101110100000010000011001101010110000111000010101111001010100011...

Manager to Bitaro

10000 9999
0 1478 611197056240
0 2597 835440373289
0 5656 317075461098
0 7869 845481797540
0 3015 733604441581
0 7948 531386059044
0 2383 355087898468
0 2677 280292209120
0 2170 793007978412
0 1048 149892772613
0 9532 950281027555
0 7203 834011138253
0 121 573245802372
0 9293 976521285852
0 3586 426...

Bitaro to Manager

1
2898
1
2264
1
8454
1
85
1
4201
1
5940
1
3225
1
5950
1
9590
1
4098
1
5734
1
9944
1
2135
1
6457
1
177
1
7342
F

Manager to Checker

1.00

result:

points 1.0

Test #66:

score: 100
Accepted
time: 28ms
memory: 9348kb

Manager to Aoi

10000 20000
0 1693 2
0 3552 3
2403 2440 516250865680
6877 9274 950249600812
1322 7187 655198909765
0 7233 1
0 2308 7
0 9720 2
733 6323 930452557613
0 4539 6
0 5663 1
746 7717 88941455035
0 2938 2
5747 6010 435660241101
4685 7792 31716911986
0 4664 5
2406 9746 984186108315
1093 7369 309029155216
1734...

Aoi to Manager

A10010011101100011110011111000100111000001001011010100001110101110110111011111110010001011010001010011110110101100101101011001110000010001010011000010010111001000010111100110111101000011100111111010111110110011100101001001110010000010110001111100001101110110011001110010010010100111111011011100001000...

Manager to Bitaro

10000 20000
0 1693 2
0 3552 3
2403 2440 516250865680
6877 9274 950249600812
1322 7187 655198909765
0 7233 1
0 2308 7
0 9720 2
733 6323 930452557613
0 4539 6
0 5663 1
746 7717 88941455035
0 2938 2
5747 6010 435660241101
4685 7792 31716911986
0 4664 5
2406 9746 984186108315
1093 7369 309029155216
1734...

Bitaro to Manager

1
11465
1
17142
1
14493
1
8489
1
571
1
722
F

Manager to Checker

1.00

result:

points 1.0

Test #67:

score: 100
Accepted
time: 29ms
memory: 7020kb

Manager to Aoi

10000 9999
2913 8008 301603336472
2913 3385 346890852752
2913 3498 865267787262
2913 3824 191086076846
2913 9871 291760653652
2031 2913 767046464294
2913 5789 627570198797
2913 4397 524918622855
2913 4298 602499532430
2913 5098 21137486701
2913 8943 478924548400
2913 8487 294148150183
936 2913 28448...

Aoi to Manager

A10100010000111110010011010111111111000010101001000001001011101111000110000110101100011011011110110100010110011100000100001001101010000111011111010010110100001000011010101101101011110100011001001000011101011111011010101101101110001011010010010010100011110000111010101100011010001111111000011101011001...

Manager to Bitaro

10000 9999
2913 8008 301603336472
2913 3385 346890852752
2913 3498 865267787262
2913 3824 191086076846
2913 9871 291760653652
2031 2913 767046464294
2913 5789 627570198797
2913 4397 524918622855
2913 4298 602499532430
2913 5098 21137486701
2913 8943 478924548400
2913 8487 294148150183
936 2913 28448...

Bitaro to Manager

2
7948 5945
2
7948 9880
2
7948 7970
2
7948 3149
2
7948 9477
2
7948 1915
2
7948 4354
2
7948 2158
2
7948 5229
2
7948 2356
2
7948 2948
2
7948 2359
2
7948 3924
2
7948 2405
2
7948 6884
2
7948 2700
F

Manager to Checker

1.00

result:

points 1.0

Test #68:

score: 100
Accepted
time: 32ms
memory: 9408kb

Manager to Aoi

10000 20000
1716 5795 272448866282
1919 5023 8
1040 1878 423299658867
5023 7494 9
1992 8662 16144126094
580 9752 765099131018
5023 5808 10
3086 5023 5
5023 6893 10
3903 7190 449875530378
98 5023 9
748 5023 3
129 1061 55368241590
5023 6408 6
812 5023 1
497 5023 3
5023 6614 9
3855 5100 16001256209
503...

Aoi to Manager

A10010011101100011110011111000100111000001001011010100001110101110110111011111110010001011010001010011110110101100101101011001110000010001010011000010010111001000010111100110111101000011100111111010111110110011100101001001110010000010110001111100001101110110011001110010010010100111111011011100001000...

Manager to Bitaro

10000 20000
1716 5795 272448866282
1919 5023 8
1040 1878 423299658867
5023 7494 9
1992 8662 16144126094
580 9752 765099131018
5023 5808 10
3086 5023 5
5023 6893 10
3903 7190 449875530378
98 5023 9
748 5023 3
129 1061 55368241590
5023 6408 6
812 5023 1
497 5023 3
5023 6614 9
3855 5100 16001256209
503...

Bitaro to Manager

2
3963 16087
2
3963 3922
2
3963 7562
2
3963 16463
2
3963 19409
2
3963 6018
F

Manager to Checker

1.00

result:

points 1.0

Test #69:

score: 100
Accepted
time: 1ms
memory: 4552kb

Manager to Aoi

2 1
0 1 1000000000000
1
1
1
0

Aoi to Manager

AF

Manager to Bitaro

2 1
0 1 -1
1
1
1
0
AF

Bitaro to Manager

1
0
F

Manager to Checker

1.00

result:

points 1.0

Test #70:

score: 100
Accepted
time: 1ms
memory: 4312kb

Manager to Aoi

5 4
0 2 10
1 2 8
3 4 9
2 3 10
1
1
4
3 1 2 0

Aoi to Manager

A101F

Manager to Bitaro

5 4
0 2 -1
1 2 -1
3 4 -1
2 3 -1
1
1
4
3 1 2 0
A101F

Bitaro to Manager

2
0 1
F

Manager to Checker

1.00

result:

points 1.0

Test #71:

score: 100
Accepted
time: 1ms
memory: 4388kb

Manager to Aoi

200 199
25 174 1000000000000
56 142 1000000000000
57 64 1000000000000
11 44 1000000000000
116 195 1000000000000
123 168 1000000000000
95 133 1000000000000
34 195 1000000000000
16 21 1000000000000
14 191 1000000000000
133 153 1000000000000
43 128 1000000000000
19 47 1000000000000
22 199 1000000000000...

Aoi to Manager

A11101011111010000111001111011111011111110000101000110100001100111100111011010100110111001100110001100111110001101001010000100111010110101101110000010101101000101100100110011101110000111110011100011110110010100111011000100100111011100100010110000111110100111101010000001100100001100000000011001111100...

Manager to Bitaro

200 199
25 174 -1
56 142 -1
57 64 -1
11 44 -1
116 195 -1
123 168 -1
95 133 -1
34 195 -1
16 21 -1
14 191 -1
133 153 -1
43 128 -1
19 47 -1
22 199 -1
29 40 -1
107 184 -1
18 153 -1
82 160 -1
22 115 -1
57 58 -1
32 121 -1
112 176 -1
48 132 -1
124 139 -1
6 61 -1
81 160 -1
49 151 -1
3 82 -1
28 34 -1
55 193 ...

Bitaro to Manager

3
43 80 176
4
43 80 181 79
6
43 80 60 98 185 174
15
43 80 60 98 91 153 86 35 191 125 101 38 197 134 167
7
43 80 60 98 91 153 166
9
43 80 60 98 150 162 90 88 32
F

Manager to Checker

1.00

result:

points 1.0

Test #72:

score: 100
Accepted
time: 9ms
memory: 6812kb

Manager to Aoi

8000 7999
1114 7600 10
1531 7623 3
3411 5326 9
4814 6583 7
3782 6995 10
3344 7685 10
95 6577 6
816 7328 8
2590 4916 9
1543 4542 6
183 6195 9
948 5988 2
1105 3495 6
1951 5644 5
153 2251 4
5782 6503 2
2667 4540 1
3803 6763 10
4273 5209 8
3979 6975 2
3556 3709 5
3895 4699 3
953 7704 4
3760 5836 5
1225 ...

Aoi to Manager

A11111111010001011000111000110000100010010000101001011001111010010110100110100111011001000100101111101010111000001110000000011100100001110010010000101000101110110101010011110001110110010111010101010001101101110111100001100001001110001011001010101100001110011011001110000100111101001111111001100011100...

Manager to Bitaro

8000 7999
1114 7600 10
1531 7623 3
3411 5326 9
4814 6583 7
3782 6995 10
3344 7685 10
95 6577 6
816 7328 8
2590 4916 9
1543 4542 6
183 6195 9
948 5988 2
1105 3495 6
1951 5644 -1
153 2251 4
5782 6503 2
2667 4540 1
3803 6763 10
4273 5209 8
3979 6975 2
3556 3709 5
3895 4699 3
953 7704 4
3760 5836 5
1225...

Bitaro to Manager

13
2458 5406 6777 489 1458 5290 300 1889 7914 1828 1457 36 5488
19
2458 5406 6777 489 1458 5290 3416 4844 6868 1522 1344 3233 3407 1029 6840 4959 6732 182 626
15
2458 5406 6777 489 1458 7259 3522 6776 4376 2383 7195 3738 6294 4620 5289
7
2458 5406 1785 4120 480 2034 3680
17
2458 5406 6777 489 1458 5...

Manager to Checker

1.00

result:

points 1.0

Test #73:

score: 100
Accepted
time: 25ms
memory: 6868kb

Manager to Aoi

10000 9999
6260 8330 1000000000000
2348 7062 1000000000000
2850 5550 1000000000000
6665 6969 1000000000000
3643 9712 1000000000000
4611 6029 1000000000000
6617 7861 1000000000000
1531 4893 1000000000000
2916 7015 1000000000000
4040 9913 1000000000000
7233 9260 1000000000000
6371 9925 1000000000000
5...

Aoi to Manager

A10101111100011110100001101101011101110110101001101111001011111111001110011011111010001101110000000101101010010111011110010111001111100011011101000001101101001110000001011010010110001011101010100100000000000100111101000111101001101000100010110111011100100100111001001101101000010000100101101001100010...

Manager to Bitaro

10000 9999
6260 8330 1000000000000
2348 7062 1000000000000
2850 5550 1000000000000
6665 6969 1000000000000
3643 9712 1000000000000
4611 6029 1000000000000
6617 7861 1000000000000
1531 4893 1000000000000
2916 7015 1000000000000
4040 9913 1000000000000
7233 9260 1000000000000
6371 9925 1000000000000
5...

Bitaro to Manager

14
3460 2686 4900 3068 9068 1845 1018 6859 3935 9686 4246 984 4556 4935
11
3460 2686 4900 3068 9068 1845 4104 3603 9412 8715 3337
15
3460 2686 4900 3068 9068 1845 1018 6859 7479 7524 4222 1564 8737 8111 9131
12
3460 2686 4900 3068 9068 7316 4632 9882 7206 2024 5762 5413
11
3460 2686 4900 3068 9068 5...

Manager to Checker

1.00

result:

points 1.0

Test #74:

score: 100
Accepted
time: 26ms
memory: 7176kb

Manager to Aoi

10000 9999
3434 8978 860792369468
1221 5057 860792369468
558 4910 860792369468
10 3126 860792369468
932 9931 860792369468
2884 4840 860792369468
54 8869 860792369468
1810 2168 860792369468
6341 7836 860792369468
3653 5395 860792369468
6937 7750 860792369468
7682 7770 860792369468
3430 6536 860792369...

Aoi to Manager

A10010111000010111111111011110110011000101110011011100111000100101000010101001001001011001101111010100000000111100100110001000110110111111100110101011110110101111101010000110010010011011101011001011111101010001111010110110110011111010110010000010101100101110001011010011011110110010001000100110111100...

Manager to Bitaro

10000 9999
3434 8978 860792369468
1221 5057 860792369468
558 4910 860792369468
10 3126 860792369468
932 9931 860792369468
2884 4840 860792369468
54 8869 860792369468
1810 2168 860792369468
6341 7836 860792369468
3653 5395 860792369468
6937 7750 860792369468
7682 7770 860792369468
3430 6536 860792369...

Bitaro to Manager

9
8109 5753 9970 4783 8624 584 9141 9094 7454
21
8109 5753 9970 4783 8624 584 9141 9094 7454 3344 6230 1575 7355 363 5063 7082 3711 7728 182 2582 2375
20
8109 5753 9970 4783 8624 584 9141 9094 7454 3344 1636 3098 9379 3093 5727 8298 3367 2481 4364 2270
12
8109 5753 9970 4783 8624 584 9141 9094 7454 ...

Manager to Checker

1.00

result:

points 1.0

Test #75:

score: 100
Accepted
time: 9ms
memory: 6776kb

Manager to Aoi

10000 9999
861 7689 254056866918
7835 9848 647318661568
6610 8628 363308905131
847 3712 140863889959
4628 5128 399164810215
4347 4815 106927478942
2226 2454 205181738420
2036 4912 577439956105
636 8406 348373998717
6874 6892 55464300019
1324 4974 771449803096
1259 8411 477414413755
2360 3657 5071283...

Aoi to Manager

A1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111F

Manager to Bitaro

10000 9999
861 7689 254056866918
7835 9848 647318661568
6610 8628 363308905131
847 3712 140863889959
4628 5128 399164810215
4347 4815 106927478942
2226 2454 205181738420
2036 4912 577439956105
636 8406 348373998717
6874 6892 55464300019
1324 4974 771449803096
1259 8411 477414413755
2360 3657 5071283...

Bitaro to Manager

18
3702 8824 2387 3880 7931 7247 9161 4690 9437 7521 2936 7587 8159 9338 2507 4083 2609 8005
F

Manager to Checker

1.00

result:

points 1.0

Test #76:

score: 100
Accepted
time: 1ms
memory: 4336kb

Manager to Aoi

6 9
2 4 812331595440
1 5 270549920580
3 5 950219248727
2 5 680556002239
1 3 630563341439
0 4 534514376070
4 5 685171040816
1 4 972556529360
0 1 263979148959
5
5 2 1 3 4
9
7 8 2 5 6 4 3 1 0

Aoi to Manager

A10001001011101011010101111001001F

Manager to Bitaro

6 9
2 4 -1
1 5 -1
3 5 -1
2 5 -1
1 3 -1
0 4 -1
4 5 -1
1 4 -1
0 1 -1
5
5 2 1 3 4
9
7 8 2 5 6 4 3 1 0
A10001001011101011010101111001001F

Bitaro to Manager

2
8 1
3
8 1 3
1
8
2
8 4
1
5
F

Manager to Checker

1.00

result:

points 1.0

Test #77:

score: 100
Accepted
time: 37ms
memory: 9008kb

Manager to Aoi

6670 19665
1619 2114 10
4430 4633 10
611 5710 4
1685 2521 9
285 5364 5
3187 5049 9
2499 5288 10
2138 4930 6
4883 5902 10
365 1281 6
3064 3372 8
5060 5520 6
4006 6498 3
142 4724 8
2938 6654 3
4638 5373 1
4856 5323 7
116 3326 6
2724 4419 2
2056 6522 4
5131 5650 7
2888 5823 7
1779 2781 4
3457 5497 2
13...

Aoi to Manager

A10111110100101110010000000011111111011110110100111101001111001101000100000F

Manager to Bitaro

6670 19665
1619 2114 10
4430 4633 10
611 5710 4
1685 2521 9
285 5364 5
3187 5049 9
2499 5288 10
2138 4930 6
4883 5902 10
365 1281 6
3064 3372 8
5060 5520 6
4006 6498 3
142 4724 8
2938 6654 3
4638 5373 1
4856 5323 7
116 3326 6
2724 4419 2
2056 6522 4
5131 5650 7
2888 5823 7
1779 2781 4
3457 5497 2
13...

Bitaro to Manager

100
15049 13542 6277 7866 5966 15283 7405 6177 16367 1687 6313 14483 13292 12320 17777 3230 18672 6537 5340 2712 8510 9998 11716 5813 7461 5075 11064 11492 3130 7563 18616 13405 17991 15738 9532 19518 1573 1337 15850 464 15706 4382 14914 16751 9890 19401 3163 12323 4568 4746 2127 8128 2223 4334 1867...

Manager to Checker

1.00

result:

points 1.0

Test #78:

score: 100
Accepted
time: 33ms
memory: 8960kb

Manager to Aoi

6670 19665
2718 3356 213003433723
1915 5065 213003433723
1100 6277 213003433723
4281 5421 213003433723
729 3407 213003433723
401 779 213003433723
3083 4908 213003433723
3716 5271 213003433723
408 2959 213003433723
1651 5099 213003433723
918 2296 213003433723
819 5498 213003433723
4299 5845 213003433...

Aoi to Manager

A10110110001110000000100000101001011101101110101101110001010111111111111000101011111101001111101011111111011011101010011101111110110100101001110000111100000011100001111000011101000011100110011010000101001000100100000100000100011001111101110010000110000100111000110110111101110100010011010111101010101...

Manager to Bitaro

6670 19665
2718 3356 213003433723
1915 5065 213003433723
1100 6277 213003433723
4281 5421 213003433723
729 3407 213003433723
401 779 213003433723
3083 4908 213003433723
3716 5271 213003433723
408 2959 213003433723
1651 5099 213003433723
918 2296 213003433723
819 5498 213003433723
4299 5845 213003433...

Bitaro to Manager

96
2826 19388 14957 17767 16852 16256 15961 3948 17196 4861 5891 867 4571 17447 13108 6023 9583 10774 9300 13464 15933 4468 2594 1049 7042 11190 4489 797 16434 6729 931 806 3998 9815 13918 4736 17661 15802 14498 1237 2856 7425 16655 13578 11581 3933 14770 9247 16390 6594 17712 11663 3315 9701 5633 1...

Manager to Checker

1.00

result:

points 1.0

Test #79:

score: 100
Accepted
time: 37ms
memory: 8980kb

Manager to Aoi

6670 19665
485 2811 604273333631
2105 2475 123391373394
1404 6273 428902766503
3151 5737 323388485642
1937 6474 260719805462
5622 6322 730937208612
2288 4847 843601415004
1504 6197 427292046245
4918 5994 458822756126
1987 4606 476704239015
600 4980 805873953794
1125 5261 27487951558
170 2533 7167947...

Aoi to Manager

A10010001101111100110100000111000100110000111101001101101110111110000010011101100011011101110011001101101110001010111000010000000001110011101011000100110111101001001001110010100001110010010101100000001101000000111111001010000111110110010001110101111000111010110011000010111001000111110100011110000000...

Manager to Bitaro

6670 19665
485 2811 604273333631
2105 2475 123391373394
1404 6273 428902766503
3151 5737 323388485642
1937 6474 260719805462
5622 6322 730937208612
2288 4847 843601415004
1504 6197 427292046245
4918 5994 458822756126
1987 4606 476704239015
600 4980 805873953794
1125 5261 27487951558
170 2533 7167947...

Bitaro to Manager

88
13069 11638 4842 8905 3412 18575 15473 16047 14808 6076 9288 19232 17089 9458 19413 3944 8593 8270 3334 4755 13106 2723 12714 16114 4955 11454 11123 2829 1742 10189 9686 12281 14019 4472 18589 15353 15648 16318 4198 9318 10435 13173 4115 11983 8790 505 9151 11387 12895 7509 5496 5376 1914 5234 17...

Manager to Checker

1.00

result:

points 1.0

Test #80:

score: 100
Accepted
time: 1ms
memory: 4276kb

Manager to Aoi

6 6
2 5 655056539396
0 2 229473611097
3 4 356261427227
0 3 884308337021
1 2 717092535208
1 3 423016262555
5
4 1 3 5 2
6
0 4 3 5 2 1

Aoi to Manager

A110100110011000000111100001F

Manager to Bitaro

6 6
2 5 -1
0 2 -1
3 4 -1
0 3 -1
1 2 -1
1 3 -1
5
4 1 3 5 2
6
0 4 3 5 2 1
A110100110011000000111100001F

Bitaro to Manager

2
3 2
2
1 4
1
3
2
1 0
1
1
F

Manager to Checker

1.00

result:

points 1.0

Test #81:

score: 100
Accepted
time: 36ms
memory: 8692kb

Manager to Aoi

9870 19460
756 7030 2
6972 7026 10
318 413 3
4241 9464 1
4964 9293 10
2140 5000 4
1878 7588 7
136 6408 1
2706 4276 4
668 2869 10
3084 9528 2
433 8155 7
611 7424 4
5399 7057 10
2307 9492 8
519 1299 9
4874 6261 8
955 8275 2
368 5857 10
3732 5276 10
3930 5540 1
2230 4973 6
2740 5751 1
1676 7341 5
2698 ...

Aoi to Manager

A10000011001001011001110100001111101110011011010101100100110100010011010001100101110100000010110001110101011100100010101011111101001010110011101000010111000100010001000000100011010000001010000101001101111110010010001110101011110010001111001010110011100000011110011100101110110000101100110101010001000...

Manager to Bitaro

9870 19460
756 7030 2
6972 7026 10
318 413 3
4241 9464 1
4964 9293 10
2140 5000 4
1878 7588 7
136 6408 1
2706 4276 4
668 2869 10
3084 9528 2
433 8155 7
611 7424 4
5399 7057 10
2307 9492 8
519 1299 9
4874 6261 8
955 8275 2
368 5857 10
3732 5276 10
3930 5540 1
2230 4973 6
2740 5751 1
1676 7341 5
2698 ...

Bitaro to Manager

175
14325 4580 7238 1186 2831 2038 18216 3657 3063 3060 3030 4913 16361 9261 19204 14635 6032 5229 3579 679 17866 18053 5961 18274 6531 18310 9548 10524 4899 13463 9551 13523 11294 13242 8754 12214 4194 19420 9294 6729 19226 5585 16957 12692 5952 18085 8850 7858 16555 17101 13447 9795 3637 7428 3294...

Manager to Checker

1.00

result:

points 1.0

Test #82:

score: 100
Accepted
time: 41ms
memory: 8760kb

Manager to Aoi

9870 19460
2555 8924 46867199054
3208 9251 46867199054
3550 4857 46867199054
3573 5000 46867199054
5910 6534 46867199054
5339 6990 46867199054
3241 8877 46867199054
4150 4209 46867199054
8791 9376 46867199054
7853 8548 46867199054
4218 9509 46867199054
3907 5417 46867199054
5581 7653 46867199054
598...

Aoi to Manager

A10010111111000101011011010101000011001111000001100110010100101001100000010100011111111100111101010100011100100110110111111101101010010000110100101001011001110100110100110111101001111101010000010111111011100110011101110001100010011011010000101000010110000111010101010111111100010000101111111001001110...

Manager to Bitaro

9870 19460
2555 8924 46867199054
3208 9251 46867199054
3550 4857 46867199054
3573 5000 46867199054
5910 6534 46867199054
5339 6990 46867199054
3241 8877 46867199054
4150 4209 46867199054
8791 9376 46867199054
7853 8548 46867199054
4218 9509 46867199054
3907 5417 46867199054
5581 7653 46867199054
598...

Bitaro to Manager

84
14088 11536 18363 16773 11305 3553 3220 18273 15727 3941 17104 10033 18964 11328 3210 5073 12979 14292 14264 9066 3537 7517 13359 18999 13798 2144 7749 2846 11964 3071 17412 11759 8273 14123 1008 3933 11024 1765 17129 1137 3876 3129 1627 9437 10164 15686 7906 10034 3387 12005 5129 8185 2157 8943 ...

Manager to Checker

1.00

result:

points 1.0

Test #83:

score: 100
Accepted
time: 40ms
memory: 8772kb

Manager to Aoi

9870 19460
7073 8156 766619744288
67 6966 261767972987
3971 9025 542663257837
1309 6421 975132241202
3737 7530 82197079247
3861 6166 12150869421
4682 4729 991125310626
4618 8433 789729295663
942 4412 817252986809
2621 6766 773385630705
2319 4285 74271050429
2708 5314 79384888534
4818 6932 3402073834...

Aoi to Manager

A11011001010001111111111111010011011101110111110010010100101110001000001001001011100110010100110001011110010110000111101010011000000010100110101001100000110100101111100010010101000111001110011110111010010101101100011100111001000100010001001110000011100011000110010000100011000000010011011110110111011...

Manager to Bitaro

9870 19460
7073 8156 766619744288
67 6966 261767972987
3971 9025 542663257837
1309 6421 975132241202
3737 7530 82197079247
3861 6166 12150869421
4682 4729 991125310626
4618 8433 789729295663
942 4412 817252986809
2621 6766 773385630705
2319 4285 74271050429
2708 5314 79384888534
4818 6932 3402073834...

Bitaro to Manager

134
11646 11376 10448 12087 7337 17302 11546 17381 18649 10970 3471 7681 17681 831 12415 4912 2991 18950 6659 864 2725 6534 15679 11377 7432 889 34 18268 14532 4764 14428 7695 19055 5569 13985 15970 17876 1013 15066 6748 9305 15905 1202 12346 9289 3656 1532 1276 5461 3169 7504 10004 15011 4760 12190...

Manager to Checker

1.00

result:

points 1.0

Extra Test:

score: 0
Extra Test Passed