QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#322118#4675. Multiple Communicationstuanlinh1230 3ms4524kbC++201.5kb2024-02-06 11:47:572024-02-06 11:47:57

Judging History

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

  • [2024-02-06 11:47:57]
  • 评测
  • 测评结果:0
  • 用时:3ms
  • 内存:4524kb
  • [2024-02-06 11:47:57]
  • 提交

answer

#include<bits/stdc++.h>
#define ll long long
#define pll pair<ll, ll>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define ld long double
using namespace std;

vector <ll> order={132, 656, 840, 151, 143, 319, 62, 299, 633, 23, 898, 704, 457, 206, 691, 104, 370, 806, 51, 853, 244, 966, 641, 175, 842, 306, 664, 878, 989, 941};
int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    string s; cin >> s;
    if (s=="Alice" || s=="Bob")
    {
        string ans="";
        for (ll i=1; i<=100; i++)
        {
            string t; cin >> t;
            for (ll j:order)
                ans.pb(t[j]);
        }
        cout << ans << "\n";
    }
    else
    {
        string A, B; cin >> A >> B;
        map <ll, ll> Map;
        for (ll i=0; i<100; i++)
        {
            ll num=0;
            for (ll j=0; j<30; j++)
                num=num*2+A[i*30+j]-'0';
            Map[num]=i+1;
        }
        vector <ll> val;
        for (ll i=0; i<100; i++)
        {
            ll num=0;
            for (ll j=0; j<30; j++)
                num=num*2+B[i*30+j]-'0';
            val.pb(num);
        }
        for (ll i=1; i<=100; i++)
        {
            string s; cin >> s;
            ll num=0;
            for (ll j:order)
                num=num*2+s[j]-'0';
            for (ll j=0; j<100; j++)
            {
                ll f=num^val[j];
                if (Map[f]) cout << Map[f] << " " << j+1 << "\n";
            }
        }
    }
}

詳細信息

Test #1:

score: 100
Accepted
time: 3ms
memory: 4212kb

First Run Input

Alice
111101001110010010001100100110111010100101011011100010101101001000010111100100110100000111101101111110010010000110000110111000111101010101011000000011011110000001000101110110101110010011110110110000100101110111000010010101010110011010001101100111001010100011001000100101100101010110000100001110...

First Run Output

011101110010101001011000001011000100000001011100011000100001100111011101110010001100000110111100111100010101001000010000100011001101001111101001001110110101010011010010111111111000001010001101100010110101100100100110001001100001011100011101111111111111110110101101101000011111000010111100110010001111...

Second Run Input

Bob
00000011100010001101011001011110011000101110001001000111010100011010001011101011100001110101110110110101111101110000110101010101000111101000110110001000010010100100100000110101000110110110111110100000101111101010100111000111100011000011111000000110000101101101001100111010001110110001101011101111...

Second Run Output

100011011001010101000111001110100001100101000000111010001111001101011101010001001110111011010000000111101101110110000111101111010011101010000110011001110000110100011101100101111110111010100101000011110000000111100100001010010001001011011100100110010010110110111010001100011010001001001100101001100011...

Third Run Input

Clara
011101110010101001011000001011000100000001011100011000100001100111011101110010001100000110111100111100010101001000010000100011001101001111101001001110110101010011010010111111111000001010001101100010110101100100100110001001100001011100011101111111111111110110101101101000011111000010111100110010...

Third Run Output

11 8
68 89
74 70
92 97
28 58
6 82
53 98
29 9
68 8
95 31
61 74
99 37
84 44
2 25
74 69
39 25
76 92
77 67
74 95
1 10
100 23
12 3
28 31
85 64
75 49
56 78
42 21
93 20
95 2
47 86
17 93
58 38
95 7
35 50
91 34
87 38
44 3
32 7
30 58
76 16
94 69
48 2
68 27
43 26
100 39
98 61
38 5
93 95
37 49
27 80
51 94
23 85...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #2:

score: 100
Accepted
time: 3ms
memory: 4316kb

First Run Input

Alice
110011001011111111001010001110111101101011010010111100001110010000011100000010100100001110000000010001010111111110100111100101110000101110011101101001001101111010000011110011111011000010010010111111000010101111000010001101100110100010100100111011110000001110100100101000011110100001001001111011...

First Run Output

111011010000010011111001100101010110010001010101110110101101101001111100001001100100011101011110110111000011111011111000111000011010110101111110011000100100001110001010100101011111101101110110011100101100111011001100111100000111100110001000001101000100010100011010110011100110100110110101010101000010...

Second Run Input

Bob
01010101110011100011010110001001000000001100100000000011110100010001110110111000000001001000101010010100011101011010000110010110000000011000101101101101001111111110010101111010010111100100000100101101110011000011110001101001001001001110101100100100110000110100011100100001100110000000010011111101...

Second Run Output

011111010110101011010010100000000111001000011100111101001011010110001110011100101101011001110110111100100110100010010000110101110000001010011001000100001010011101100100110111111111110001001101111100100001001000111011010100111101010011111010111101110010011101001010011011000001000011011110000110110000...

Third Run Input

Clara
111011010000010011111001100101010110010001010101110110101101101001111100001001100100011101011110110111000011111011111000111000011010110101111110011000100100001110001010100101011111101101110110011100101100111011001100111100000111100110001000001101000100010100011010110011100110100110110101010101...

Third Run Output

82 32
36 96
69 8
55 17
38 1
73 22
46 5
31 21
8 63
19 84
68 65
25 49
37 18
80 28
43 13
54 82
27 3
2 25
27 6
50 40
72 28
49 9
45 67
49 5
32 46
37 78
56 19
34 22
47 91
77 19
62 85
38 23
71 26
58 13
95 51
34 36
57 66
6 41
32 55
56 78
19 25
58 95
11 30
66 34
41 51
29 13
62 70
75 72
34 66
19 63
62 31
66 8...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #3:

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

First Run Input

Alice
001000011000111111000111100101001100110110010111010010010010001110100100011010001100001110101111000111001010001111101100001011011011110110100101111111101011010010100001011100111000111001110111000010111000001011010010001101010101110011100101110010110100001111101001011001000010110010011010011100...

First Run Output

101011110110011111001011001101101011100000001100101101111111111000011001010011111000010001010001100011110101100010100011010111101100101011111011011111100111001010000101000100011111001001011111100010000010100011101111001100001001101101110010001100110000001110111100000110000111010010011011001001101100...

Second Run Input

Bob
10101010011110101101100000011001110001111110010001100000100100000000100001100011101011011110010010001011000101111000111011101010001010101001101001000011011101110100100001101100011011111000111011100101000101010000010001001101000010010101010111000000101100010000100010010110001000010100110001001111...

Second Run Output

100101000011001011000100011111101011000111100001001110100110100011000001101010001000010000100011110100100111100010111001010111000011101010010101100101001101001101111101011000100101111101100111111001111111101101001100011101110011111001111101111000111011100010101000100101001100010110011111011011001001...

Third Run Input

Clara
101011110110011111001011001101101011100000001100101101111111111000011001010011111000010001010001100011110101100010100011010111101100101011111011011111100111001010000101000100011111001001011111100010000010100011101111001100001001101101110010001100110000001110111100000110000111010010011011001001...

Third Run Output

77 52
95 72
63 51
68 14
100 99
84 13
72 18
69 95
71 33
19 22
96 58
3 84
10 54
53 100
24 98
42 76
32 29
2 55
74 86
95 52
34 5
33 61
15 86
45 37
8 21
94 76
71 50
9 90
40 27
9 88
56 57
28 83
46 5
8 53
20 56
13 3
73 22
6 69
39 13
6 67
1 34
11 62
69 9
68 56
45 71
7 27
31 76
40 22
71 8
29 76
10 39
1 83
54...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #4:

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

First Run Input

Alice
000000000110111100010000100100010011010001001101010110100000001101111101001101111100111011101000000100001000101100011010000110011001101101001001010111111000001001110000101010110100101111010010011101001000100001000100010000110110010111000000100011001111111100100100101110110100000001101110110101...

First Run Output

100111100001000110111011101101000111100110000100000000100011000100111100001101000000101010111110000000011000001000110011101011101011010001011001010001110101001110010011100011010011110110111111011001111001000101111010010011111100011000111000011000101000111011110010000001010100010011111011001111011100...

Second Run Input

Bob
00000011001111111001100001110110000000001100010100001001100100110010011100010110000101101000110100110011010011011000001101110100110110100011000101011111000111110111000010100101010111100001100000001011010111101111111111100100101010010011001111110000100000000110001100000011011110001110010011110011...

Second Run Output

110111111010010011000001101011011011000101000110010010101010010010100010111011000101110101010011000101011000101011010000100000111101000001101100011110011100000000111011101011010011001001001010101011001101111000001011110010100001011110001010000101100111011000001110010010001111101111000111000100001101...

Third Run Input

Clara
100111100001000110111011101101000111100110000100000000100011000100111100001101000000101010111110000000011000001000110011101011101011010001011001010001110101001110010011100011010011110110111111011001111001000101111010010011111100011000111000011000101000111011110010000001010100010011111011001111...

Third Run Output

34 61
36 56
22 7
100 39
65 10
51 73
36 12
64 5
89 64
30 83
60 2
65 89
68 48
49 87
73 15
62 38
87 43
39 32
50 50
88 56
68 56
1 75
5 99
16 10
67 49
18 71
26 51
98 36
69 74
15 81
88 87
33 80
38 12
22 41
10 21
66 25
41 99
5 3
37 87
29 68
71 7
48 95
92 58
57 50
13 29
96 39
26 71
95 24
78 64
45 63
35 3
98...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #5:

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

First Run Input

Alice
100001000101000000001001010101011111110000000111110110011111100101101101100000000001100000101111110111011011011111100100010100110100001101110111010100010000101101010100000010100100010011101111110111101101011111000001111001010000011001010000101011001111010011110010100111010000100111110110010001...

First Run Output

010110001101110101101100011100000011010000101111110110000100111000100010111100111011011010000011111010000110001001001111011001100100110010000111100000101000110001101110100001111000110000001101100000110001111001101010000101101101001110001000100010100001001000110000000001111100101110010100111011000010...

Second Run Input

Bob
00101010101010011010000110100111110000011011010010100110101000001111001111110000110000000010111110011110000000100101001110111011010011111100111111010101110101000100110101110111010100010110000110101111101100100010010111011111101100101100100011100100001010011011011111001001111010010100010011001000...

Second Run Output

100111010111011010010011101100000010110000111110101111100110111010101010010100110011010100100100110100011001011111111100110101011001011000111110010110110011001110010110101101010100010100001000011110001110111110101110111010001110111010011110111000000000011110001101001110000001001100100001101001011001...

Third Run Input

Clara
010110001101110101101100011100000011010000101111110110000100111000100010111100111011011010000011111010000110001001001111011001100100110010000111100000101000110001101110100001111000110000001101100000110001111001101010000101101101001110001000100010100001001000110000000001111100101110010100111011...

Third Run Output

82 39
94 70
90 50
38 100
47 20
56 9
88 52
32 77
49 71
78 14
65 95
24 7
63 16
62 58
22 10
30 18
21 9
30 61
54 11
58 59
25 67
55 68
3 59
86 68
96 42
72 55
37 62
99 69
27 89
12 31
57 72
40 68
16 76
91 7
70 7
72 32
47 23
1 39
29 68
50 55
54 39
85 54
60 1
32 78
3 15
16 51
97 63
32 66
90 46
89 50
69 6
27 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #6:

score: 100
Accepted
time: 3ms
memory: 4244kb

First Run Input

Alice
000110011011010000110110000001010011011001110011000000001101100010111101111001110110101001110011111101101000011000100110001101101010010110010000111110001110111111010001101001101000011111110010011111001001111110101001001011000000010101100010111001101001101100111011100111110011101101000100011110...

First Run Output

000001011000011100010110101111000001110101100110110000011110010001010011011001100110111101010110100101000101000111010101011010110000000101110111101111000111111100010100101100101100110111011011110001001101011101000000000000100110001011010110100111111001111001001000011010111011000010000110001110110011...

Second Run Input

Bob
00110110101101100000010111111100000101100011111111100011011000001010100011011000001010001111010100110000011111000001000000100100110000010010111010100101001010100110010010001001011001000100111010110111011110010001000111011010001101101000110111100110000011000100111011001100010011011010001011101010...

Second Run Output

010100011111000000000001110011001101001010100100111010100010101010111100010001111101100010000011000000000111001111011011101011110100000111001100010100100001100011100000111110100000011110000001000101011101011010010101010001000110011100110011011001111110111110010101111100100000110011000110010011001001...

Third Run Input

Clara
000001011000011100010110101111000001110101100110110000011110010001010011011001100110111101010110100101000101000111010101011010110000000101110111101111000111111100010100101100101100110111011011110001001101011101000000000000100110001011010110100111111001111001001000011010111011000010000110001110...

Third Run Output

6 12
11 67
4 23
5 83
60 66
14 80
87 68
87 83
16 47
45 18
96 44
99 38
28 33
40 84
68 24
25 24
27 71
88 76
45 18
64 57
44 53
82 53
28 7
1 49
10 39
18 39
64 3
6 60
10 97
23 66
55 12
74 78
73 23
53 66
41 81
72 81
58 56
97 15
32 17
29 87
54 37
92 68
27 26
60 64
61 20
84 37
24 91
23 64
29 99
84 94
89 38
2...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #7:

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

First Run Input

Alice
110011100001011110101111010010000100011111111100000111100010101101000101010101110100011001100010011111011000101000100001111000000001110011111000110001110110000110111100101000000100110101011011001011011011111111100000001000010001101000010101111110010010001000001010001001111100000100111000100100...

First Run Output

100101101100011110111000111010000001110010110101001111000101110100110101101001010111101000110101110101110011010111100011100011111111001001101110111000010111001001010110100110001110100111110000001010010001101111010000101100000010111010101000110100100111101011111001010111111111001011100010110010000011...

Second Run Input

Bob
11101101001000111010100111001010111000010111010010100011001000101011111101000000110111001111001010101000100011010101000001001000010000001111101110111010000000100011101000101001110001101010111111101111111010011101110110001010101000011011110001111010101110111001111111110110011000011100011010100000...

Second Run Output

010011100110001100011111000010011011001111111110100011100011100111000011100010000110010001010101000100101010110011101011111110111000111100110001110001100011010011100110110110011010000111111000111000101110000100010110011011010010110000100000101100100100010111101111001011000110010111011001000100110001...

Third Run Input

Clara
100101101100011110111000111010000001110010110101001111000101110100110101101001010111101000110101110101110011010111100011100011111111001001101110111000010111001001010110100110001110100111110000001010010001101111010000101100000010111010101000110100100111101011111001010111111111001011100010110010...

Third Run Output

86 33
73 42
70 55
67 49
5 16
36 92
3 94
34 67
73 88
50 80
82 100
88 1
80 1
45 60
93 87
53 70
28 72
16 40
48 30
41 76
96 57
29 85
82 33
79 87
16 8
92 26
16 29
100 46
25 96
62 36
11 6
39 95
2 73
42 100
43 51
65 52
27 13
17 77
82 29
43 31
10 95
89 50
11 50
21 96
14 68
65 22
83 12
98 94
58 3
20 22
25 2
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #8:

score: 100
Accepted
time: 3ms
memory: 4232kb

First Run Input

Alice
001011110110011111111111110100101100111101100011110011000011101101101100000111010111101100001011010010100001000011000101111111000100100101010010111110101011111110010010100111001011110101101001101001101000010101011110101011001010011010100101010011110011010111011111110110110110100001000101011101...

First Run Output

100001110110101001011100010110000101010110110001101010101000000101110010100101101111010110011111100111111111010111011000000101111011010000010100101001111011001011101010000011000000110010010111001001100101010000100000110100011110001111100111110010011000110010101110110010100010110011000001110110011110...

Second Run Input

Bob
11000000110010101110010101111100000101011000100011011101101001111100011100010010001100100010111100101110110100101110001001011100110101000111101000001110001101001001010010111000001000000001101011000111010011101100100100110110000111100101011100010111011100100011111111001111101111100111110111111001...

Second Run Output

001000110101011101110000111111110110011011001001000111111011010101111101100001101011110111101001101100110110001110111101110010111111010000110101111001111110011011010001100000110001100000010100101000000100110011100001101101011001000101110110011111000100101111011111110101001000100001010000101011010000...

Third Run Input

Clara
100001110110101001011100010110000101010110110001101010101000000101110010100101101111010110011111100111111111010111011000000101111011010000010100101001111011001011101010000011000000110010010111001001100101010000100000110100011110001111100111110010011000110010101110110010100010110011000001110110...

Third Run Output

77 63
7 75
36 96
81 55
52 65
27 7
26 38
67 27
1 15
37 8
37 66
67 18
47 65
9 70
30 91
82 49
11 22
12 46
94 6
43 57
29 25
94 74
83 87
93 36
81 34
15 34
37 17
80 10
28 7
44 51
86 11
74 58
76 72
63 66
28 98
67 85
55 6
3 80
92 58
19 89
64 81
55 81
42 50
51 8
3 40
81 33
29 57
5 35
74 46
64 43
97 52
66 36
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #9:

score: 100
Accepted
time: 3ms
memory: 4520kb

First Run Input

Alice
100000111110010010110011110000010000100011011011110001110001001000100101001111101001001000101011101100111100100001100011001111011001011101100001100010001000000010110011101011101000011110111110011111110111111101110110110001111011111010110000100110110011001110010000000011000101101110000101011110...

First Run Output

001010110111011101011100010101000011000010111100000100111000111111110111010001000000001010110101101010001101110010000111000111110001101111110000100011010000110011101100100100101011011010111111010110100101001100100000010100111111111100111111010000111011011100111110101100101111100110010001011010110101...

Second Run Input

Bob
00111101110110010110011010111100000000011111110010110110111111101101101111001100011000100010011010101101001110100000110010011100110101010001001101111011110101110000101101111001000011000111000110001101011110011101000001101011101101111001111111111101011111100110110010110000011100010000110000011101...

Second Run Output

011110100000100011101111101001101101101011110011101100010100010100010111100101101011100010100101111101100011111011000111100100011101010110111111101100010001001010010011000000010100010010100110000011111011000000001111001100001010110110000110111000100110100000101001100000100110111111011101101001001011...

Third Run Input

Clara
001010110111011101011100010101000011000010111100000100111000111111110111010001000000001010110101101010001101110010000111000111110001101111110000100011010000110011101100100100101011011010111111010110100101001100100000010100111111111100111111010000111011011100111110101100101111100110010001011010...

Third Run Output

9 40
31 4
25 82
30 20
36 34
20 7
20 21
100 4
15 57
31 33
85 58
39 43
85 56
52 25
93 31
25 29
69 80
48 69
48 20
67 25
66 19
14 95
8 44
29 78
88 94
31 98
39 60
47 41
31 86
88 44
82 76
37 34
86 60
77 7
57 77
21 62
59 95
92 83
61 13
66 21
1 77
64 63
25 5
73 90
61 12
82 87
41 72
68 66
4 65
52 86
60 91
28...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #10:

score: 100
Accepted
time: 3ms
memory: 4436kb

First Run Input

Alice
010101011111100111010011110011001110100000100001010110000111001001010101011110110100000001010010110011001001000100100111101101000000101101111001100100101110001000000101001000111010000100111010100001001111001101011010110111001101010100010101011111010011100100110110101101101111110000010110001000...

First Run Output

101011111111010111101011000010101110100010101011010001001110111010101011111101111011000101100010001111001010101100001011110100011010001100001110101111111111000011011110101001011001101101110110000111000010110001111111100001010101001110011011111111000001010000000000001100001011110010000111010111010100...

Second Run Input

Bob
00111001101110101101111001110100010110011000010110100100011111000111101011100100010001000111110110011010111000101001010111000011001001011101001111001110010110111110100001100111101110010010000111000010101101101000001001110101101111110000101011011011101011011000000111001001110100010100001001110100...

Second Run Output

011011011010111110001001100010111000100001110010110001010110011101010101110001100110010100010001010100010000000000100001010110010100101111010111110111110101111110100001011010000001110001010000011010001000111101111010001001110101111010001110001110111000001111011001010101000010010110011110111101000001...

Third Run Input

Clara
101011111111010111101011000010101110100010101011010001001110111010101011111101111011000101100010001111001010101100001011110100011010001100001110101111111111000011011110101001011001101101110110000111000010110001111111100001010101001110011011111111000001010000000000001100001011110010000111010111...

Third Run Output

99 87
20 86
69 95
71 71
8 89
72 98
21 82
16 52
100 39
66 25
58 61
11 9
41 53
99 32
54 40
50 26
44 25
64 28
49 75
20 96
49 79
34 15
31 50
40 94
41 69
10 83
60 35
28 86
89 45
7 80
89 13
33 30
58 32
91 56
7 53
58 40
4 14
20 13
35 34
15 61
98 79
50 26
40 39
42 73
21 67
58 26
84 1
29 73
7 37
40 74
34 87
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #11:

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

First Run Input

Alice
111010101110011110010001100011100100110100011110101100110010001011001110110100111110001000111011101110101110011011011110100110011101100010010100101110000110101111111010011110001110111110101011001000110110010000010011010000010011110101000110101000101001000110111001000110011101011110110100010110...

First Run Output

111001100110100101100000110011001000011011010011100111100110010001011010100100011011010111011011110010001000001011000101111110100101011000111001111011101111100101101101100011001011000111101111101100000111011111011010110011001100101001101101110011101000101001110000001111001010100011011011011100101100...

Second Run Input

Bob
11010111100001001001010011001110011001010101011101100100110110011010011110010110010000001011111110000000101000100101010111100011101111000100000100001011111100010111001101001101000110100000011111110111001001000100101101110000100010110000100101001110011101011011010011010110110011010101011000011111...

Second Run Output

100110011000000111001001011101011011011100101101111110110010000001001001011111101010101011110110010101100100100011110110011000000101001001001010000110000100110111010101111011100010111111110010100100000101100100010111110011100010000111011100101010011011011001011011011110001011100100010110000101010000...

Third Run Input

Clara
111001100110100101100000110011001000011011010011100111100110010001011010100100011011010111011011110010001000001011000101111110100101011000111001111011101111100101101101100011001011000111101111101100000111011111011010110011001100101001101101110011101000101001110000001111001010100011011011011100...

Third Run Output

18 62
67 16
78 60
27 82
82 12
1 71
98 36
65 37
99 68
73 19
89 91
30 14
30 66
38 99
3 79
84 13
45 15
99 34
21 77
46 60
6 37
6 48
40 64
43 42
28 82
43 37
57 74
87 62
72 24
51 74
35 67
5 95
30 21
27 9
54 85
40 81
65 23
60 3
57 76
9 71
20 2
100 19
72 54
53 94
69 55
78 26
74 20
49 29
77 42
78 84
72 49
78...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #12:

score: 100
Accepted
time: 3ms
memory: 4228kb

First Run Input

Alice
011001100111001101011001000010001001000011000010010101011010011111100011100001100111100000011100010000101001101010101111100110010110000011100100100111100100111001110111000100000011001111001001101100000111000111101101011110000011011100100110001000001111001001100010000110010010110001100001011001...

First Run Output

010001100110101101110000000111110001100000101101100000110100100010010010100000111000001011001110111111000110101011111110000001101100100010010101111110110011110000111010111011000110110000010011110011001010101110000010001110011000110101101011000001000111100001110111101000011000111101000000110001100101...

Second Run Input

Bob
11011101001100001010010111110110011000011010011100111010111010111011101001110101010011111000100010010001001000111100100000111101100001111011101010110100001110101111011110000110111011011001011100101100010111010100101110001110001110000011001100001000111111101010011001101111101101111111001110111111...

Second Run Output

000001111111000010101110101011101111110100000100000010000100010110111000000110010000000110001000111010100000000010100010000000100010001001111000011111100010101000101011001101010001111110100100000010010110110010110100100001110011000001110011100101100110000110001001000010110100011010011100000101011101...

Third Run Input

Clara
010001100110101101110000000111110001100000101101100000110100100010010010100000111000001011001110111111000110101011111110000001101100100010010101111110110011110000111010111011000110110000010011110011001010101110000010001110011000110101101011000001000111100001110111101000011000111101000000110001...

Third Run Output

97 95
76 89
57 50
25 47
80 79
91 87
4 51
48 35
96 82
26 7
12 65
43 54
87 78
38 62
34 70
16 3
26 71
91 4
46 42
29 94
97 12
4 58
91 5
23 4
55 63
57 38
16 32
95 64
79 23
93 97
48 92
62 71
53 6
6 93
6 81
90 5
42 24
66 91
41 7
76 52
47 95
24 37
68 58
56 70
53 59
43 89
33 85
40 58
18 72
24 6
28 60
92 88
8...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #13:

score: 100
Accepted
time: 3ms
memory: 4220kb

First Run Input

Alice
010000111000110000011000110100000111000110010111010011100100100001010100000101101001001011000011000010110011001001111001011101100010010101010011010000100101101100011010111110100100001000000101111101000100001100100111110110100000010100100111100011100111100110101100110111001100001010110100110010...

First Run Output

000010000001111001001110111010010101100000011111111111101011110001001111111110111001111010011100011100100110100011000101001010100110010010010011000101111110110100110111000110111010101101110010101110100111011000111101110000110001111111101001111101000010011101101101011011101001100000110011011110100100...

Second Run Input

Bob
11101001001011000001010000011010000101110010010010100100010110011000000011001100111010000011011011100110011000100101110111011110100011110001110100101010101111001100010011111110010011010001110110001000101111101010010111100101101111000100001110000010010101011010000111110110110010000111101101100001...

Second Run Output

101011010000110010000010011000000110100001110010011001011111111001101011100000100001110011001010111001011101010101100011000001101010101100100010001111010101011100111110100010010110000000100000111001000101001011111011011011100001110000010001111001100101000010010100000011100000111100111100101010101000...

Third Run Input

Clara
000010000001111001001110111010010101100000011111111111101011110001001111111110111001111010011100011100100110100011000101001010100110010010010011000101111110110100110111000110111010101101110010101110100111011000111101110000110001111111101001111101000010011101101101011011101001100000110011011110...

Third Run Output

56 26
38 7
17 3
28 84
14 42
25 9
45 48
12 29
13 6
30 31
71 65
79 62
62 52
27 89
82 52
79 26
65 21
17 11
94 38
21 51
64 43
98 30
76 99
32 70
80 26
79 96
54 3
24 18
95 47
32 27
66 78
61 75
18 18
60 80
43 80
3 1
18 77
59 56
23 88
41 79
58 33
28 99
46 8
28 19
96 73
2 97
74 34
63 25
78 47
18 26
72 30
21 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #14:

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

First Run Input

Alice
111000001000111000111101111110011010110000010011100011111111010110111111010101100100111101100000101110000111110001010001101110101010010011110111000011111000111101001111110011011010011111011100111010010001001000101100111011001100110110000100101000111001100000110001101101111111111000111111111110...

First Run Output

000111001101010010010011010001010110111011010101100100011100101100110111100101011100001010001011110001010100100001111011110110000001010111010010100110000010001011100100100110111011100110100011100010111001101111101011001110010100001011000111101011011101101000111111100010111110001011000001111101011001...

Second Run Input

Bob
10100111001000111111001001101010101011000111011100110101001001101101100110111101001100111010001010001100110001011100111011011110100010110001100011011001001010111010100111011010100011111011101001111001110011100100011111011100010000100000011010100010101101111010111000101000001101011010101010001001...

Second Run Output

101100111010011101100000100111111001010110101111111010101100111001010010100111010001111110001101001101000011000110101111010001001011101101010011010100110110111111110100101010011110010000101111000000111011010111100111100010111111110011011111001011100000011111111100110001101111101001001101100001001110...

Third Run Input

Clara
000111001101010010010011010001010110111011010101100100011100101100110111100101011100001010001011110001010100100001111011110110000001010111010010100110000010001011100100100110111011100110100011100010111001101111101011001110010100001011000111101011011101101000111111100010111110001011000001111101...

Third Run Output

30 3
39 79
95 87
71 64
51 38
93 10
81 24
51 9
28 74
54 66
13 72
6 74
60 22
9 93
15 46
53 54
54 52
65 89
69 37
74 55
31 23
33 26
38 92
73 93
69 16
35 25
50 23
50 88
72 50
84 92
79 29
14 66
91 98
75 32
91 35
59 86
35 53
92 58
76 17
53 84
48 10
37 85
63 14
9 17
81 43
42 100
86 46
28 48
88 57
43 85
65 9...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #15:

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

First Run Input

Alice
010000000110101110100000110110110010011110000100100000100110011110010110010110110000011010110000101100101100111001001010101011011100000110101111011011000011000100010000111011110001000101011010110011101011100001110001111010001111100111101110111010011111001100000000100000011101000100010010010010...

First Run Output

001011100001100111011011110001001000101110010101001110000110101011100010001010101011011010100111011111101100111001100100000000100110111110101100100001010011010100110011000110111001000001011100010100100101001100011100011010010101100101000111111100100011000111101101011010111111110000011000101010001001...

Second Run Input

Bob
01111000101011011010101001011100001111000001010000001011001101100011010010011010111001000100100000111011101100100101010000001010010101101111001111010100011101011110011011101101001111101101110011100010100010111001101110101111111101110010100001010000100010000100010001011000001011111110100011110111...

Second Run Output

000011100000110101000001110110110101011010100000111101001101000111111000101011001011011010111101101000101011010111110000100111100000011000001001110011111000001011010000000111111111010011101010010010010011101100110011011001010011000000100101110000000111100110011001011000110100111100111011010110011101...

Third Run Input

Clara
001011100001100111011011110001001000101110010101001110000110101011100010001010101011011010100111011111101100111001100100000000100110111110101100100001010011010100110011000110111001000001011100010100100101001100011100011010010101100101000111111100100011000111101101011010111111110000011000101010...

Third Run Output

10 21
77 45
96 29
44 9
71 100
56 8
44 74
41 95
88 11
4 28
37 46
48 62
18 17
57 93
68 44
26 32
9 68
2 83
90 93
94 89
85 35
74 70
27 93
73 54
71 61
97 13
7 100
92 43
41 18
83 78
53 75
56 56
19 50
47 78
55 82
14 87
82 55
98 2
83 43
1 21
34 24
3 16
54 73
5 44
31 22
66 5
31 83
96 6
11 64
21 83
91 17
90 9...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #16:

score: 100
Accepted
time: 3ms
memory: 4480kb

First Run Input

Alice
110011100111110010011010011000110000011110110000001001101100010010111100010011111010001001011101100000111000110101011110110101110010010101010101011010000001000011110010001001111101010110111111100110111001111011011100001011001100111011010110001000011001010110011011011000101010101110100111101010...

First Run Output

000011001011110101000001000101000111101110101000101110100011101001011011000111001011010000011001001110100101111011001110010011111001000000010010001000110010001101101110011011110101010101110101111100011110110010100110011101011100110011011111010001010001111001011111111111001110001101101100001100001010...

Second Run Input

Bob
00101111000101101010100111100100100000100010001001011000101011010101010111001111010011010110101110011000100011101011000011000000101110100111011111010101100011001001111110010101010110011100100111011000111100111110001110101111000010111000000110000011000001100010011010011001100010001000001010100010...

Second Run Output

101111010101011110100001010101110001000110100011101011011000111010110011000011101111100100001011101000011110111001111111101101011010100111011011011110001111001101010100000111010000011101111010000001111001101000110110011100011111000001001110101011110110100011110100110100110111000011101100111001011110...

Third Run Input

Clara
000011001011110101000001000101000111101110101000101110100011101001011011000111001011010000011001001110100101111011001110010011111001000000010010001000110010001101101110011011110101010101110101111100011110110010100110011101011100110011011111010001010001111001011111111111001110001101101100001100...

Third Run Output

70 33
22 46
93 87
22 84
59 54
95 87
91 22
87 37
75 90
24 94
17 55
76 23
25 51
56 16
70 59
18 82
43 73
74 45
85 31
87 72
61 28
99 77
26 15
36 55
64 76
46 14
13 79
38 21
30 29
85 9
87 70
92 6
44 77
85 40
57 44
1 94
64 83
7 81
36 68
23 44
92 9
68 85
92 81
44 39
41 38
55 15
90 100
92 74
98 83
7 59
10 13...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #17:

score: 100
Accepted
time: 3ms
memory: 4224kb

First Run Input

Alice
011011001000011010010000010001100000101110111011011100110101110100101001110011011011101011011101010010110001011101111000010001011111010010110111111111011110100000101011100011100001111111001001011101110010111011111100100011010011100010000100101001100100000011100000010110001100011100010100000011...

First Run Output

011110010000010001110010001111100100001010001111010010001010111111110110001110111110000010100010000110010011100111011100111110101110000011110000101111011110001001101111000101001100011101101011100110010001111010011110001100111011011101101010010000010100110001010111011110110011110011110011001110001110...

Second Run Input

Bob
00100001001110010010011011111000001110100011001101111011010101000011110100100110000110111000001110100100010110001101100010100101000000001110111101101110111000010111011011000101111000111001000010111001110111100100011110011100100010000001001000011100000101101010010000011110011110111100101101110001...

Second Run Output

001010010011111010101101100001111001101101111001010110000111010101111001001111001110100100100101000111111101001011101011001011100010000010110011011110111100100101000101011011011100000111110000010010110001000101000010011110101111000110000001100110010100000101000101011111010101100001000001010101101101...

Third Run Input

Clara
011110010000010001110010001111100100001010001111010010001010111111110110001110111110000010100010000110010011100111011100111110101110000011110000101111011110001001101111000101001100011101101011100110010001111010011110001100111011011101101010010000010100110001010111011110110011110011110011001110...

Third Run Output

3 91
53 64
88 12
37 40
75 75
39 80
82 77
12 82
77 99
88 51
17 65
42 6
20 51
33 6
66 83
93 11
79 47
77 24
33 4
22 25
55 60
11 80
45 76
13 94
83 95
40 49
3 5
52 57
74 20
28 14
72 62
77 72
28 13
11 3
64 36
79 17
33 2
16 24
80 79
62 43
17 38
11 84
2 69
59 67
94 92
96 30
54 22
38 36
51 81
94 75
79 73
98 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #18:

score: 100
Accepted
time: 3ms
memory: 4516kb

First Run Input

Alice
011101001100110010101111000100011101000001111010110010111011101110110011110110000110110001000101101001010101011011010000101001001010001110001011001010010011100001000100100101110011011000000000001100101110101101001110001001000111011011110101110000011001100011010010011011011011010000010011100001...

First Run Output

010110100101011010010001101110110110000001110110010001001000000110100100110111001110010110100011000011011101100100111000011110010111110110000100111100001011100000111101010000000000001100000111000010101011010011000001110111000001101010000001100101111110001000000100001100000011000001101100100100100101...

Second Run Input

Bob
10011100000000010101001111100011001101101111101111111010100100110100000010111101010011011110001110000000011010111000010001011000010010010000100010011001101100011001111011110001011001100011100011011101000110111110111001110110111000011001110111101001001111110000000011001011101011101011101101100011...

Second Run Output

110100110100010001111101010110101101101101001011000101101000010110110010111000101110010001111101010101100100011001100000101010111000011111011010001010111101110110111110110101010010000111010001011000100011001010011111001010011000010010110010101101001010110010110010010110001001001110111011100010001000...

Third Run Input

Clara
010110100101011010010001101110110110000001110110010001001000000110100100110111001110010110100011000011011101100100111000011110010111110110000100111100001011100000111101010000000000001100000111000010101011010011000001110111000001101010000001100101111110001000000100001100000011000001101100100100...

Third Run Output

87 54
88 24
97 73
5 59
40 93
1 69
47 46
57 34
62 35
51 72
63 31
57 54
93 34
33 27
62 42
91 84
60 19
61 17
92 64
44 89
26 67
92 81
71 94
16 47
96 93
87 44
33 58
10 26
49 82
90 15
80 65
28 26
1 50
67 27
28 75
76 98
7 37
91 12
65 56
11 62
18 17
25 64
93 95
76 65
97 63
89 91
96 85
6 59
51 74
51 72
97 94...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #19:

score: 100
Accepted
time: 3ms
memory: 4216kb

First Run Input

Alice
010010011010101010101000001101100000000000100101000110100100001010001100100111011110000101001101110010101110011010011100100011110100000100110101000011110011011011110001101111011010111011010101110100010110010110101010010111110111111011100100100001101110101011011111000100101101101000001000001011...

First Run Output

010111110000001100110111010111100100011111100110100101110100111011010001100001010011110100101100011100101110000100101010000000100100010101100101100100011101111011010110001111011100111110001000000010101100011011110100010001010000111000010111101100010000010010100100010111100011000111100011101000000101...

Second Run Input

Bob
00001110000101111110001101001110111000010100011001000110110000100001100011011111100000011010001001000101011010100101000000100111111110000101111000011010111111000010101101111010110100000110011001001110001110101100011001000010101101100111010101100001111000011101100101001000011101101111111011000100...

Second Run Output

100000100110010011010100000011001011101101110010000011101100010110000101100000100010111110110010110111000100111110010010111011101100001101110101101111100101000010100001000100000011101100010001111101110100110010001000111101001000111010111011111100110010110110010100011010101000001100001111100110000011...

Third Run Input

Clara
010111110000001100110111010111100100011111100110100101110100111011010001100001010011110100101100011100101110000100101010000000100100010101100101100100011101111011010110001111011100111110001000000010101100011011110100010001010000111000010111101100010000010010100100010111100011000111100011101000...

Third Run Output

40 46
45 3
43 37
47 56
64 9
84 41
35 70
29 66
95 70
46 7
11 50
95 12
46 65
89 1
36 21
16 42
14 79
92 23
89 74
75 54
94 74
70 99
82 12
59 79
8 29
20 5
18 78
80 94
93 67
91 30
65 31
46 47
79 74
62 59
88 77
3 13
78 73
99 12
17 45
45 50
100 13
93 49
9 28
7 9
6 64
52 71
12 76
87 96
66 56
28 11
11 24
63 3...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #20:

score: 100
Accepted
time: 3ms
memory: 4480kb

First Run Input

Alice
000111001011110111011010111111010110000001100101111100101001110011111001011111110110010101011000111111001100110101101001101010001001100001101011100011011000100000111100111111110110000110100101100001010110010110010011001000001000111011110011111101100010100010011011001000001110110011101000111011...

First Run Output

111111000001101101110111101101001010011100011100000001010110101011000011011001110100001001110011010011101010111011011011010111011101010110100100011000000111010000111001110101100100111010011101101101001101100100000101111100110000111110010100001010001100101101011010111011111001001111100000011110001000...

Second Run Input

Bob
01000001101000010111111111000011010110110110001011010100001010101011000010000001011100010010111110110000101110101111010000101110110100100001111100100111111111011100001100111110010101011001001110011011110101001011010011110100101101101100111011001100001101110000011001001100010011000011100101000000...

Second Run Output

010110101110001101111000010111000011000101011011111001110111101010001000010001010110010001000100101001010110111001011011111101100001101110000000101110111011001000100111110011101110100010001011001100011111011111001101011111110010110110110110000100001110011001111010100111010100101100001010000011100001...

Third Run Input

Clara
111111000001101101110111101101001010011100011100000001010110101011000011011001110100001001110011010011101010111011011011010111011101010110100100011000000111010000111001110101100100111010011101101101001101100100000101111100110000111110010100001010001100101101011010111011111001001111100000011110...

Third Run Output

50 65
60 57
47 4
67 27
91 99
99 5
76 70
84 59
36 50
17 81
43 93
7 69
42 96
72 52
97 32
72 32
29 77
68 16
6 57
80 17
12 71
44 82
22 29
45 8
65 68
59 18
50 60
88 24
31 67
92 60
70 7
65 32
9 51
18 14
90 78
30 12
42 62
48 84
45 89
52 23
77 27
88 30
71 31
76 93
41 55
65 70
21 97
21 28
60 14
94 37
47 92
2...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #21:

score: 100
Accepted
time: 3ms
memory: 4484kb

First Run Input

Alice
011100110111101100010001110100111011111010011101111001111100000100000010001010100100101011001001001101110000101000101010101010001100111111011000010110011011000100001001111011101100110100101110010011010011000000100000111101001100001001101010110101010010101001011011000011101000010111100001001000...

First Run Output

101101011100000001010110001110101110110010010111000100100000011011001101011010000011110101111100011100101001100001001101010111111010110110111111100001001001010000000110111111000101001011110001100010111111111111111110100100000100001000001110111100110011001011011101101000101111011000001100100010100001...

Second Run Input

Bob
10000001001000000101101010011110010110010110011010001000100001101001011110010010001001011000000001000000001001100101100010000110010101000011011001001011000111011011001011100110010000010110011010001100011010100111110110000110111001111011011001010101101011001101011001111100101001101010111110010011...

Second Run Output

000101101011011011010100000011111111100111111010011000100100010010000010101110110101110011011010101001000000011010111001001000111101010010110100011100001101011011101101110111011110110110101000111100100000110110001001100110011111100100000010011111100101010001101010011101110000011010010011011000101000...

Third Run Input

Clara
101101011100000001010110001110101110110010010111000100100000011011001101011010000011110101111100011100101001100001001101010111111010110110111111100001001001010000000110111111000101001011110001100010111111111111111110100100000100001000001110111100110011001011011101101000101111011000001100100010...

Third Run Output

95 59
8 79
62 43
42 80
39 24
41 93
72 68
91 24
79 100
15 20
68 24
66 53
86 32
21 58
20 75
38 28
66 50
80 52
31 2
81 52
77 44
52 73
40 87
45 25
83 69
36 75
68 71
85 49
68 49
28 38
11 66
24 16
78 48
22 35
65 85
49 34
29 90
76 24
83 42
79 64
31 27
8 53
67 72
35 53
23 91
34 6
28 3
26 57
62 69
2 67
53 88...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #22:

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

First Run Input

Alice
001111010010010011100111010100000010101110100110111111110111101010010001011100100110101000011101110001110011001101111010100001000111100100011110100110010011000001011100001110010110011010011010010001111010100111011111101111111011111100111011001001010001011111001110111001110001000010101010001101...

First Run Output

111100111100101001100101100101110101111111110010101110101000001100011011111011111111000101011011110001100100011001100010110111101111100101010010001010000001001111100110000010000000110010110011111101001010010110010011110010100001000110111100001001111011110000000001000111110101100110101010100100101101...

Second Run Input

Bob
00010000001101010010011110011101000001110101111011111101010011111011110100100111100001001100011101000110001111111011011110001101010111110111111101111001110001100010001100011000101101111101001110100000100011101011100000010100000101101110001010001110011010001101010110101001011011001001010001110011...

Second Run Output

111111100110010011101100000010011011111110011011000101000010000100110101111001111000100110110010110011110011111001001101100101101111010010000001111111100110011010100001000101001001001010110011001011011011000010101101000001110101101101101111000101101111001110010101110100000100011001101000101110101101...

Third Run Input

Clara
111100111100101001100101100101110101111111110010101110101000001100011011111011111111000101011011110001100100011001100010110111101111100101010010001010000001001111100110000010000000110010110011111101001010010110010011110010100001000110111100001001111011110000000001000111110101100110101010100100...

Third Run Output

62 84
67 43
45 41
2 95
22 38
81 28
36 40
3 16
30 7
31 97
84 22
87 66
25 78
98 98
89 51
97 68
60 41
54 1
75 27
44 21
84 6
53 88
43 10
88 26
92 81
54 90
20 48
41 77
3 45
55 25
53 1
94 90
54 76
27 49
100 31
1 36
53 51
72 64
32 68
30 48
49 48
16 79
66 41
6 80
49 79
47 14
50 41
42 84
31 39
74 1
96 72
34 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #23:

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

First Run Input

Alice
111111001100111011010000001111000001100111010010011000100110100000101111001100110110100011000010110010000010111100100101001000011101111100110110100011111011001000001101011100101011111100100100101011100011100101111000101111110011101111011101000000001000100001100000101100011000110000011010000110...

First Run Output

101100011011001001010000001111101000100011111001111000110101010010011010011011100001100111101111001100101111100111001110110100110000011110101010010011001000101100001101010000100111011000011000000011011011100110100001111101101111100110011001001000001100001010101001011000100000011010111100101100100110...

Second Run Input

Bob
01000100001010100010000101111100111001101100011100011000110000011000010001111110000101101101110000111100001100101010000110111010011100111111011100110011001011011001001011110111011000111000010101100000101000110010011010000010110010011001100010110010010111001000001010101100010011001111011100100111...

Second Run Output

001111011110011010100111010000001000110110001001001110010110101110110100111011000100000111011111110010000100100101100100110000101010100110110011011010101000110110100000001110101010011001101000111110111111101001011001100000111011010101100010110100100110001010101100101011010110111101101100010101010111...

Third Run Input

Clara
101100011011001001010000001111101000100011111001111000110101010010011010011011100001100111101111001100101111100111001110110100110000011110101010010011001000101100001101010000100111011000011000000011011011100110100001111101101111100110011001001000001100001010101001011000100000011010111100101100...

Third Run Output

73 62
5 55
86 37
20 52
4 87
72 21
45 4
87 21
22 33
39 30
39 62
62 33
34 98
50 43
35 33
72 31
69 47
82 12
43 72
76 2
57 28
56 97
28 66
55 73
95 98
15 74
16 68
18 63
66 32
8 94
99 12
61 69
73 53
27 1
83 8
14 51
32 27
67 1
29 33
100 85
93 87
35 23
23 13
82 8
35 52
82 29
57 25
69 52
85 20
50 89
59 35
52...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #24:

score: 100
Accepted
time: 3ms
memory: 4280kb

First Run Input

Alice
001001100010010111110100010010000010011001110010110000101011011000111101110000101111001001110011111110100101110101100000101000100100111001101010110111010010100111101001011101010010101000101101000101111010011110000100111010110010011010011110011100001101011001110111000001111011010001010110011111...

First Run Output

111101111000011000000111100010010001010100000001101000100011101001111100010111111111010101111001000000100101111100010101000011100101011100000110111111011000001011101000110101001110110111100111101010000110101110111111010000111100111001111111011110000000110001110100010101101000000001001100101000011011...

Second Run Input

Bob
10101010100110101011010011001111010101110010001011111101000001110111110111101100000100001110000010001011001111000010000100010100010110101110000001010010000000010001000001100011010001100111101010111010101111001101011110011000100111000011111010011010100000111000011001110000100100010110010101100100...

Second Run Output

100001111000100000101011111000111101100001110011100110001010101111110011101111010011000001011011010001111010011101010110011010011010100110110111010110110101001110100101011001001010001101110100110000100001101100111010000110010110110001101110110110100100110010010110010010111001010001100000001110000101...

Third Run Input

Clara
111101111000011000000111100010010001010100000001101000100011101001111100010111111111010101111001000000100101111100010101000011100101011100000110111111011000001011101000110101001110110111100111101010000110101110111111010000111100111001111111011110000000110001110100010101101000000001001100101000...

Third Run Output

58 38
97 45
79 46
73 60
84 13
49 64
4 65
64 28
45 42
60 6
46 90
44 84
27 41
63 21
42 12
95 52
73 27
59 72
49 11
28 51
94 51
17 17
23 63
67 53
63 68
72 83
20 90
32 13
82 52
73 80
33 87
7 43
52 68
60 55
35 37
99 38
67 5
71 39
34 35
42 37
22 58
67 63
42 88
23 8
21 16
85 66
15 47
11 13
78 89
84 56
82 13...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #25:

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

First Run Input

Alice
010110100110100010010100101011111001111010111000000110011100110100010011111011111110001111100100110110110101100110000101001000000010001010101010100101011100101101011111100101001010010001100111010001111010111101101110010000001000000100000111111011010110010101001011100110101011101011001011010111...

First Run Output

001101011011111001111100011011000000000001111010101011001001110100111110011000101010010001010110100011001011101011110111001111000011111011011001001111000111100010001100001000011011001000111101101101100011110100011101111110110101100001001110110111101010111110010001100101110110000011001110111100100100...

Second Run Input

Bob
01110100000001101010010111010011111001111100011101010001101110100101110111100101101100110011000000000011010010110110011000110011111101100010000100011111011100100111110001010101001010101001001101111110110110011010111111011110110100001001000100001000001011011001101111000010000110010010010110111110...

Second Run Output

001110100111000000101001000001011110011111011011010110001010001110110110110001100011100101011001110010000011010111101000100100101010010101001100101100000100111011101111100001001011001100000000100010101100110010111001111011111110100100100011111010101001001001000011010000010101001100111000001100111010...

Third Run Input

Clara
001101011011111001111100011011000000000001111010101011001001110100111110011000101010010001010110100011001011101011110111001111000011111011011001001111000111100010001100001000011011001000111101101101100011110100011101111110110101100001001110110111101010111110010001100101110110000011001110111100...

Third Run Output

49 60
1 7
65 80
79 27
90 50
56 24
75 11
81 74
84 36
1 30
62 24
21 65
94 24
92 61
69 98
23 98
22 83
50 62
5 21
67 35
29 82
25 10
50 74
98 61
67 16
57 70
38 48
30 49
21 20
61 28
84 18
25 20
28 91
46 23
68 9
45 16
86 21
62 80
34 55
59 88
53 75
14 4
83 3
51 2
9 35
83 77
70 80
33 94
28 63
54 11
76 67
11 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #26:

score: 100
Accepted
time: 3ms
memory: 4280kb

First Run Input

Alice
100100111001100011110100001001101100000111001100110101000100011000001010001101110010111010011110111111010111010100101110110100001110000010110101001111110011001111011000110101101001001010111111011010100100100101111010100010110100101000001111001110000100001111110000000010011100001000001110100100...

First Run Output

011111111001101010111100010001000001111000001000000000101010110011000100101101101011101101010101000110110011111000011000011100101111100111001010101111100000000010011100010100011101100011101111100110000010001100110111001011000100011100110111101101100001001100001011101000110011011001001000110111001011...

Second Run Input

Bob
01111100011101100010001100110011101100000011010101100111000011111001101111001001010101111100011000110001001010110101000110000101110000101011010100101110110110001000110101001001110111100110000010001111010110100100111010110001000010101111001000110010110011010001100101000000010110000101000011100011...

Second Run Output

001011101110110000010011010101111100101101100001101001101000101111010010100110100111101100111101011110111100000100101100111110000011011100100011001010000001111111111010110001000101010000111000110101100111011111100100100111110001101001001010011001011010111100100101001111001101100011101110011000011011...

Third Run Input

Clara
011111111001101010111100010001000001111000001000000000101010110011000100101101101011101101010101000110110011111000011000011100101111100111001010101111100000000010011100010100011101100011101111100110000010001100110111001011000100011100110111101101100001001100001011101000110011011001001000110111...

Third Run Output

70 4
68 79
33 37
46 51
7 87
42 48
76 34
69 69
59 26
29 92
13 18
29 58
11 37
88 39
23 38
97 60
10 7
59 82
93 12
81 25
61 63
37 39
64 14
82 3
98 19
24 51
20 83
91 71
2 6
98 20
88 24
57 39
55 21
64 35
71 1
22 51
73 26
62 66
51 11
28 24
16 82
33 17
44 90
19 24
93 71
64 52
30 56
7 37
58 86
75 41
16 31
55...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #27:

score: 100
Accepted
time: 3ms
memory: 4272kb

First Run Input

Alice
100111100001011010111110100110001001011011001001110101100001011011110001111100001111111100100100010110000001001000100001101100101001100100011000001111010100010011010111010100111011000100011111011001001000001100111011010011101100111001010110000010000010001011101111111001001011011010010101010101...

First Run Output

110100110010111001101111101111011101101100111010000011011111000111010101011101100001100001010011001101011001011110101100001101001010111100010101011001110001011010110101010110110101011000001010011000000110110011000000111111011100011010001010111111010100111001101001011011111011101011111000001101000111...

Second Run Input

Bob
01000010100010000101101011010000000011001111110011010001000001111111100000110101111101110100001110001000101010111101000011110100101101000011101001110110001000101000100111100101010000110010110110001000100011110100100001011111100100000011001001100100001000100100010100101101100101110011110101000111...

Second Run Output

011001100001010101100111110101110010001111100011111011110111000101000111100111101000000101011110010001001101110001011110010100010110101010011000111100000011100001100010100101110000001011110000101100100010001001011010101011101001111110001010100111010000011101100001111110000101000111011111111010000100...

Third Run Input

Clara
110100110010111001101111101111011101101100111010000011011111000111010101011101100001100001010011001101011001011110101100001101001010111100010101011001110001011010110101010110110101011000001010011000000110110011000000111111011100011010001010111111010100111001101001011011111011101011111000001101...

Third Run Output

63 30
65 60
40 22
33 85
56 7
90 66
20 34
59 29
22 14
6 51
24 95
71 41
39 88
69 52
82 9
90 70
32 48
96 59
68 81
41 96
94 62
44 30
32 5
14 53
44 25
12 5
97 45
11 23
89 92
9 51
86 73
95 3
38 29
97 7
57 69
49 80
36 66
12 10
3 57
50 32
2 49
81 3
65 77
52 28
30 60
3 65
14 94
100 25
62 77
87 58
43 93
54 17...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #28:

score: 100
Accepted
time: 0ms
memory: 4280kb

First Run Input

Alice
011101000001000101011100111111111011100100100100010111010100010011011000011110001101001000000111100000010010010111100000010010101000100111000110111101010111101110110100110001111011100001100110101110010111010001001111101100000101010000001111110011001100101000111001001000001010010010001110001101...

First Run Output

101100000011101011111101000000111010000110010110011001011101010100110011010111100111010110100001110010111000110000100011110110000111001010001001000111110101110111010011011001001010110110110011011101010010000011011110010101010011011001111100100101010110000011001001000000110011000110100010100111111011...

Second Run Input

Bob
00011000101011111110100100000011001101000010000010011111111101001000110000101001011001011011111110110111000111011000110010000010101000111000101010100010011100000111010001111000010100101010001000000010011000000101111101111110101111000000010010110110101000111111101011101111100001000000010000001111...

Second Run Output

001001000110100011110110001010011000000110011001101000001001101011110001110011100011101100111011001101101011101110101101100000101011101011010110011000111011010000111000110001001000010011101000010001101010011010001010101100101000110110101100011001010111011000110000101101111111110111011110100110111101...

Third Run Input

Clara
101100000011101011111101000000111010000110010110011001011101010100110011010111100111010110100001110010111000110000100011110110000111001010001001000111110101110111010011011001001010110110110011011101010010000011011110010101010011011001111100100101010110000011001001000000110011000110100010100111...

Third Run Output

77 99
91 42
68 100
38 66
21 69
10 52
3 8
61 34
50 90
57 23
22 59
50 87
30 21
77 72
45 9
16 56
14 60
71 14
10 22
57 55
39 81
98 32
45 29
24 4
2 95
75 35
24 58
58 21
100 80
17 64
96 92
46 94
3 60
30 41
43 28
56 83
96 5
62 8
81 91
35 29
87 40
10 49
7 8
27 32
65 55
50 15
42 75
83 34
11 70
42 60
49 5
70 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #29:

score: 100
Accepted
time: 3ms
memory: 4488kb

First Run Input

Alice
111001010011110111001111101100011110110101000101101100101111011000001010010100000100011011100110000110110101001001011101010100011011010010011010001111000000010010000111011111000101000010001111000110011011110110111111110000100101000110010101010111010011000010101101011001110110100100010111111111...

First Run Output

000001111111101000111100011111100101010100001101101000100110011111000011011111100000111111100110100001101000001011010101001000000011011001011100001100011101011111000101110110000000000001101101010100110101100010010100000110000011100000010011110000001001100101110011001111100111111100011000011100100010...

Second Run Input

Bob
00100111111111110100010001010101110000110101010111111101111111100011001111011110100101011001000100101001010010001000001010001000100000010001100000000111110000100101010101110101001100110011101000001110000110000000101010100011111001111101111011000101011111111001110010010000110001010010001111000110...

Second Run Output

011101111010100001100011110011010010101100101101010000011110111100101100101011111111000000101011101101111110010000001010110010110110000011000100000101001111100111101010011010111001110001000100001111101111111101111001011010011100100011001001010101111110000100000101100111000011111010001000100001111110...

Third Run Input

Clara
000001111111101000111100011111100101010100001101101000100110011111000011011111100000111111100110100001101000001011010101001000000011011001011100001100011101011111000101110110000000000001101101010100110101100010010100000110000011100000010011110000001001100101110011001111100111111100011000011100...

Third Run Output

20 17
47 12
71 39
55 89
68 37
44 72
62 31
35 32
60 67
93 59
34 3
95 56
59 88
76 50
96 94
64 3
72 88
64 89
8 91
33 43
28 31
9 61
37 57
25 99
86 69
33 95
60 65
85 15
11 24
73 14
34 59
36 24
29 83
6 65
69 84
56 33
30 92
33 56
26 89
57 64
71 52
1 5
45 10
51 76
9 76
42 72
94 55
72 61
30 67
94 43
86 90
31...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #30:

score: 100
Accepted
time: 3ms
memory: 4200kb

First Run Input

Alice
111011111101001100000011000000010110000101100001101100101111111111001011100000111111101011110101110110000011001001011100110000001111111001100010011011111101010101101011011110100101100001000011111001111011001010011000100010110100000011101000011010000110001110010101111100010000011110000000100100...

First Run Output

111100111101011010101000111011000000111111001000011011111110100101010110111100110100110001101111001010100000101000001010110110010011000001010110001001001001001111110010010000100011100010001110110001100101101101101111010011000111011100010001101010001100011111110001100110001011001101100111011001011110...

Second Run Input

Bob
00011101100100110100000011100010010000100000000011001001100011001001000100011101100111111011110111011011001111000001110011000001000000000100100111101000011010001011011011001000000010000111001110111011100000110000000111001011001100010011001000110010001010100011010000011000011111001010001111100110...

Second Run Output

011010010010011011010100100111000111001111000100100010011100101101110111011011101110000100001100000110111011100111110000111110011111001000000001000010010001011011111010101111100110101110111101101000110111101101111000101011111101100100000000110010110001101100011101000100100100000001111101111000000100...

Third Run Input

Clara
111100111101011010101000111011000000111111001000011011111110100101010110111100110100110001101111001010100000101000001010110110010011000001010110001001001001001111110010010000100011100010001110110001100101101101101111010011000111011100010001101010001100011111110001100110001011001101100111011001...

Third Run Output

53 67
100 82
18 90
31 79
20 55
90 72
40 14
86 68
86 78
18 53
35 9
23 68
90 33
99 86
65 66
39 13
13 33
52 48
83 27
87 41
67 13
44 87
75 17
58 84
80 11
15 20
79 79
78 60
74 90
27 13
22 22
3 24
91 25
72 54
12 85
1 42
72 37
73 97
100 3
25 24
63 19
3 70
37 92
42 49
26 94
88 50
46 96
75 68
84 83
73 2
34 6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #31:

score: 100
Accepted
time: 3ms
memory: 4120kb

First Run Input

Alice
111011011000110010100010101110011100100011110101000000101011101111111000001010011111101111101010000111111101100010101000111001101010001011100110101001001101010111000100100010111100010011011110011101011110110101110001001001001110000011110110110001100100011011001010111111110001100001011110010010...

First Run Output

001000110010100101000011001000011111000001100110110001010000000001100110111000100000101100011011110111011000000110101011111001100111001000001000100011000111011100100010110100100010110100010001010111111000010000110010010001011111101001111101011001110010110000100110111001111100000100100001110101100110...

Second Run Input

Bob
00000111111101100111100101110011100011100111110010011110101111101000000010000110100010110100000000111100111011110001010011110111010100000101110010110000110110111101100000000100001001010100011110010101011111010111011110000100011000010111000110010110010100000100110001110101110010110000000001101011...

Second Run Output

001000100111000111100110100000000110000010011111010001100000011101101010001001100000111001001101101101111110010110111001010100110110111111011110101100100111101011101101110111001111000110110010110001111111101111110010101010010000110101100110101001111000100001111111011101100001001100100001000000001010...

Third Run Input

Clara
001000110010100101000011001000011111000001100110110001010000000001100110111000100000101100011011110111011000000110101011111001100111001000001000100011000111011100100010110100100010110100010001010111111000010000110010010001011111101001111101011001110010110000100110111001111100000100100001110101...

Third Run Output

27 31
55 45
27 33
30 28
63 37
40 81
4 33
33 58
54 20
33 7
14 10
1 47
40 91
73 64
37 94
53 24
31 65
32 26
10 16
7 87
28 2
37 37
42 38
20 79
37 42
33 94
29 76
27 90
67 56
40 73
41 91
69 20
25 66
8 64
3 1
20 97
42 23
80 51
36 26
57 37
53 27
41 85
7 15
26 10
46 91
14 10
34 61
79 10
25 21
42 21
12 66
38 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #32:

score: 100
Accepted
time: 3ms
memory: 4520kb

First Run Input

Alice
011101110001111011011001101100001000100100000111001100001100010010111010010101101111010111001111000101001110000101010011100000101100010110111100010111011000101010100010000100100011001001111100101101110100001011101111000011010100110000000101110111110100100101111000011000101111111111010110100111...

First Run Output

011101000100111100101100001011101111110101001010110010010001001000010000111110000100011000100100000100101000100011111001100010100101000001101000000111110111111111001110011111011101011000111000101000101011010110111011110011010110001100100011111011100101101000000000000111001000001001011000101010011111...

Second Run Input

Bob
01101110111011000100110100101001100101100111100010010000010001101001101101101110001000111010001001111111111001001000010110110100001110000001101000000000001101100110101100111111001101011010110111011111011110001011011011011100101101100101111111101010011001000000110011111000001011001111000000011100...

Second Run Output

110001101101001101111111001001001000111101101010111001111111000010001011010100000111111111100101100110101011011100001111000101101000111011000110100101001010101000101101001011011111110011110100100110110101011110010011011000101101000010110100100010010010010010110000110110101001011111001010110111101001...

Third Run Input

Clara
011101000100111100101100001011101111110101001010110010010001001000010000111110000100011000100100000100101000100011111001100010100101000001101000000111110111111111001110011111011101011000111000101000101011010110111011110011010110001100100011111011100101101000000000000111001000001001011000101010...

Third Run Output

45 58
74 87
93 59
83 77
39 70
63 17
42 99
31 50
71 47
28 43
92 20
69 11
41 46
19 14
32 76
34 78
19 60
71 65
59 52
39 78
49 47
1 16
75 47
51 7
30 98
16 61
75 15
95 33
52 52
84 8
12 85
3 2
29 14
67 11
11 36
30 32
35 91
22 32
54 68
55 33
82 61
81 58
5 31
98 71
47 17
87 51
79 30
80 85
23 26
83 71
20 35
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #33:

score: 100
Accepted
time: 3ms
memory: 4444kb

First Run Input

Alice
010011111111000111010110100010011110011101011101000000110011001011000000110111111010110101010110000001111110011010011100110101001001111011000000101100110111100111000110011000111011111110000000111111010001011011101010001101100100111110101100101101010110111000111010101000100000100000111100010010...

First Run Output

101101111011110100000011101110010101111101110011011100010101000010100101110000010101000110111001010010111011101000011010000100011010011001100110010011111010111000000100010101010101001101100111001001101011101111110000000001101100001101101011111001011111011010111100100001110010110110110111100010010010...

Second Run Input

Bob
00111111001111111011110001111100101001011001001000000000010100000001010111111010011101010100101011111110101100110010111011000110100101001010011010110001000001001111111101101001111000010010011110001010110110101100100001000010110011000000111001111011110101100110111010000100111000001100101010010010...

Second Run Output

011100000000111110001101001000101101101100011000001001110111101010001010010100110110001101011010100010100000011110100011010011000011110000110011010001001011101011100010100111000110100011001010100000101101010010011110101001111111010010011010001110101000000010010000011101010000010101100110001000010001...

Third Run Input

Clara
101101111011110100000011101110010101111101110011011100010101000010100101110000010101000110111001010010111011101000011010000100011010011001100110010011111010111000000100010101010101001101100111001001101011101111110000000001101100001101101011111001011111011010111100100001110010110110110111100010...

Third Run Output

98 54
98 90
76 87
71 36
50 6
90 49
60 54
18 3
45 42
62 11
17 53
26 45
68 71
75 17
69 38
46 38
21 36
60 78
38 93
45 38
67 63
26 9
68 36
71 70
26 7
22 68
18 27
31 80
78 70
44 18
38 7
63 21
37 46
19 36
67 92
96 92
56 42
88 92
61 88
24 99
72 68
34 37
35 30
42 79
41 64
14 40
8 51
13 59
56 20
8 37
7 45
78...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #34:

score: 100
Accepted
time: 3ms
memory: 4216kb

First Run Input

Alice
111101100011000111000000001011110100101110101010010101101010011110000011000101111111001011101001111111000000101011001001111010111110001011101100000100100010000000001010110101011000101001111011110110001000000011101100111000001110011100010010100110010101011110011011101100111111000000111111011110...

First Run Output

010000100000001001111111101101101111110100100110001111000001011000101000011001011011111001110010111000011111100100110000010101110000100100000011110101001100101100000000001110100011010000111011101110001010111100011011011111101001100111101010011000110001100111011110010101100110000001011000001111001000...

Second Run Input

Bob
01110101010000100001011011111100101111010100101111011011000110000100101010101000000001101110100111110001100111110111001110101110110010100000011111000010010011111101011010101100011000111100000000011011010100001110100101000110110101111010101111011101110100100001001111100110000110000011001101101100...

Second Run Output

101010000001101111111110000111111110111001001110001100110000100100000110101000000001111100101101001010101101111100100010001011110100110110001110000101001001011110110001111110010010001110110010100010011010110100011100011111110111001001110010101101101000100001010101111010011001110011011011110101111111...

Third Run Input

Clara
010000100000001001111111101101101111110100100110001111000001011000101000011001011011111001110010111000011111100100110000010101110000100100000011110101001100101100000000001110100011010000111011101110001010111100011011011111101001100111101010011000110001100111011110010101100110000001011000001111...

Third Run Output

69 40
4 87
70 96
65 45
66 18
86 5
11 30
52 77
63 25
22 86
53 49
10 7
28 77
68 5
59 53
41 71
94 4
24 44
54 13
92 70
100 20
25 69
39 29
45 39
58 32
2 88
67 41
97 82
15 22
4 43
61 94
92 85
78 77
67 78
61 42
4 25
45 19
55 8
72 65
92 12
47 2
4 22
37 55
64 30
53 19
4 31
21 44
24 68
96 65
65 38
14 42
68 24...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #35:

score: 100
Accepted
time: 3ms
memory: 4476kb

First Run Input

Alice
110010011101001111111011010001111010001001100110101110110011011101000010111110100101100011110110001011001001110011110111100101110000000100111010110101101100101010000111111110011000001100010101011100011110010001110110011001110101010100011010101011011011101001011101111001000100000011000101100101...

First Run Output

011000101100001111111011011111111010110000011000011011100011111010111001101001101100000110100001101100001110000001011100000011101000011001111011111101100000000000000100100000011000010011100001101111011011100000111111000001010001010001111101011100101000001101100101001001111100000100011000001010111010...

Second Run Input

Bob
11010111001111110110101100011100001110000011111101111110100101100000000111000100101111111110111010101001100000011001100100110011111100001101110110000011101001100111111110010100110110000110100001000110010101100100101010001000001010100011111000111101000001101100111001100100010001010010001110011000...

Second Run Output

010110111111010111111100011100111101011100101110011001001010101111100011101101110100101010000001001111010101101001110110111010100000010000101001010000001100100110000111111010010000001111101010101100000110101000000101110011101110101011011101111110100010110000110111010010010000010010011011100001111111...

Third Run Input

Clara
011000101100001111111011011111111010110000011000011011100011111010111001101001101100000110100001101100001110000001011100000011101000011001111011111101100000000000000100100000011000010011100001101111011011100000111111000001010001010001111101011100101000001101100101001001111100000100011000001010...

Third Run Output

13 31
82 23
97 51
31 99
72 18
24 92
91 79
82 67
4 59
97 63
2 27
6 25
5 42
29 93
17 87
31 83
9 83
16 11
66 25
82 69
6 7
13 53
50 1
13 96
47 29
73 73
36 68
29 72
7 91
39 9
93 21
16 67
76 95
69 48
97 26
76 19
20 76
99 96
45 21
26 37
81 66
16 87
90 2
13 75
29 36
76 97
70 12
72 70
55 84
66 32
56 32
37 83...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #36:

score: 100
Accepted
time: 3ms
memory: 4480kb

First Run Input

Alice
010010010011011010111010010011011111101101011000101011010110001100111111110011101010010001000010111111100010110111110000000010010100110010001101110001110101100101000010010000100100110011100101111100000011101100001110011110101100100010010101000111101111001111100101001001010111000010110111101011...

First Run Output

101110110011110010011000010100001010100110010111111001000110011101010000011011011111011010110110001111001111100111000111000010011110010110110011001100011010010011001111110110001111110010000110001000001101111101001011001010000110111010100100001010000001011100100000100000001010001101011001100111111001...

Second Run Input

Bob
11010100100001101011111000100001110111101001000110110001000001110100011101100000110100111011001100100101001110101011010010000111001111011011111101010001111010001000101001110100110011011101100101011101100011010011000100010100010011110001000001011100000001000101001111000001101011100110110100000001...

Second Run Output

110111110010100011111010001100100010010010010010110000010111111111111110011111101010001001000101101100111101101010101100111000010000100011110100111000010010011010010000001000001111001101001000111000011100100110011010100010100100011010000001111000111011011101001100010010000010001000100010110101000110...

Third Run Input

Clara
101110110011110010011000010100001010100110010111111001000110011101010000011011011111011010110110001111001111100111000111000010011110010110110011001100011010010011001111110110001111110010000110001000001101111101001011001010000110111010100100001010000001011100100000100000001010001101011001100111...

Third Run Output

6 60
32 31
7 27
4 52
47 23
35 52
15 23
96 34
4 26
17 26
8 77
42 34
9 15
48 80
4 31
21 69
55 70
58 16
22 64
1 80
44 65
39 95
57 55
26 66
21 36
69 30
9 54
97 25
65 17
57 66
32 57
78 9
16 79
60 66
7 14
46 46
39 43
46 55
87 21
21 33
50 65
28 50
58 16
37 17
28 24
50 96
98 92
91 53
26 79
34 60
22 98
70 78...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #37:

score: 100
Accepted
time: 3ms
memory: 4520kb

First Run Input

Alice
111000110110100100000001110100001000011101100110001010110011000010101111000111100101100011001101000100000001000000010001011000100111011001011010110011001001100010011101001000110100000100011010001100100011011000010011010100111001100111000110010011100111010001110101101100111001011101101000001001...

First Run Output

010001001111010011011001000111000111110010111100100000111111001000101101111101011001110001010111110110010000001000010000111101001111010111000101110100010100100000001010111111010001011000011110011100101010101110001101101011010101010110000010101000110100110111011101010010101001101111010111110101100010...

Second Run Input

Bob
01000100010010001110010101001101010111100011100011001111000100111000000000101010000010001000000010001110011111001001101010100100111010011011110100010100111100001101000000010110100110010111101101001010101010011111011000011111110000110010001000111111110100001111001110101100101110000111101000011000...

Second Run Output

110011111111101001011110011110111110011111001000101010101000100100110001110000000110110010001101010100111000101000110110110111111100011110010101111101100010001000011101000010010010100111000110110011010000100101001010011000001011011010001100001110111110100101100111011100101110110100101011010100100110...

Third Run Input

Clara
010001001111010011011001000111000111110010111100100000111111001000101101111101011001110001010111110110010000001000010000111101001111010111000101110100010100100000001010111111010001011000011110011100101010101110001101101011010101010110000010101000110100110111011101010010101001101111010111110101...

Third Run Output

11 92
65 23
86 21
70 78
95 25
89 91
29 41
13 71
15 9
9 64
66 1
63 91
17 58
93 15
45 95
65 85
2 20
21 24
86 28
6 36
89 15
24 54
25 42
44 91
90 25
50 87
38 17
82 86
93 10
34 80
48 22
74 12
10 17
25 11
96 43
81 49
78 96
53 56
71 64
3 63
49 46
44 86
54 20
40 18
50 48
80 50
90 94
8 59
7 2
81 50
20 60
96 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #38:

score: 100
Accepted
time: 3ms
memory: 4224kb

First Run Input

Alice
111100111101101100011100100010101011001111100011111000000010101111010110100100000001011010100000100111111011001111000101000111000110001100000000001100110110111101101000110110011111011010101001100011101000010110111100001010101011011000111100101101101110110101001011001011101010011111001110111000...

First Run Output

010100111000101110000101110011010100000000011110001001101110010111110100011101101110001011111110010001101010011111101100100110100001100100000100000111101110011111101100101000110010100010011010101100000001010101011110110001111101101010110001100000111001010110101100111000000011011110001000011101111000...

Second Run Input

Bob
11001001000111100101010011111010101100100000011000100101011111010000110000011110000101101100010110011011101000100110100111100100100010101100101000011111010101010111111011100100000101110001100011101101111010000010011000110111111000111111100111010010101100000010000000011101110111111111110110101000...

Second Run Output

110101011000100101010100110001011100110001010001001001101000000010011110001010011011110101101111101001000001001111100001101010010001011111000100000111101011011101000000010100001011101110001010011100001110110010101111001000111110101000010110000011100001001000010100100110000101011100110000010111010100...

Third Run Input

Clara
010100111000101110000101110011010100000000011110001001101110010111110100011101101110001011111110010001101010011111101100100110100001100100000100000111101110011111101100101000110010100010011010101100000001010101011110110001111101101010110001100000111001010110101100111000000011011110001000011101...

Third Run Output

79 1
61 35
53 82
84 23
30 75
63 86
3 65
99 24
79 15
81 56
49 55
6 32
81 31
41 80
35 64
47 3
40 65
11 22
28 10
41 60
44 64
54 43
2 26
34 34
72 71
2 35
100 88
35 3
96 51
38 34
79 28
60 57
27 60
70 55
10 50
38 65
71 23
45 100
40 79
94 15
47 15
46 47
35 96
100 25
58 36
39 80
55 92
62 84
18 29
15 15
28 3...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #39:

score: 100
Accepted
time: 3ms
memory: 4232kb

First Run Input

Alice
101100100000101100011101000111000101110010110111010110000100110001100001000100001101001101010010000010010010100110111011011000000100101001001000001100101100101011000110111110110000011110101111000010100010110010010001111110010011100100010100010101010001111111101101101110101100010011111010001001...

First Run Output

110001010101100011110111101011011010100101001000111011001010101001010110000001100101000011000101011001100010100010100100010100001111101000110011110001011011110111100100010001010110011000001111011110110100010111001101101000101101010000001011011111100000101111001110111110101011110111101111011101000100...

Second Run Input

Bob
01001000011110100000101010001001011110100010001111100110001111100100100011110111011111001111001101110011010110101001010001101000001111000010110100110010010111010110101000111001010001110011110001010111111100100001100101001001101010100101111010000000011010101011100001001011101110011100101101111011...

Second Run Output

101010101000111011000101100111010010011010010000100100100100000100101110100001100100101111111111101111010100110100001001101001010011010010111100100011001011010011011110011101100011001111110001100000010000111111001100101110011010100100011010001001000110000101010000101011011101000011110001000101011100...

Third Run Input

Clara
110001010101100011110111101011011010100101001000111011001010101001010110000001100101000011000101011001100010100010100100010100001111101000110011110001011011110111100100010001010110011000001111011110110100010111001101101000101101010000001011011111100000101111001110111110101011110111101111011101...

Third Run Output

7 41
25 90
18 61
90 81
45 84
42 49
19 52
86 15
52 3
55 19
10 48
66 75
1 15
43 6
77 10
11 8
17 30
88 93
91 39
41 38
92 65
5 33
95 42
60 50
88 82
26 41
37 79
23 69
47 44
99 30
100 74
69 74
23 72
87 78
41 30
3 56
69 27
39 68
49 44
23 22
89 96
56 18
26 9
10 22
73 71
24 33
42 47
99 67
41 16
58 76
11 68
4...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #40:

score: 100
Accepted
time: 3ms
memory: 4284kb

First Run Input

Alice
110010100010101100011110100111010000010011111001111110100000110100010111110101111110110011100000111010101010100011000111000001111000011100001101101011001001010100011011110001011010100100101110110011110100101100000111000100110011100110111000111110001100001111100001101101101011010111011110111010...

First Run Output

011011011011111111101111011010011101001110011110011100000100111010110011001111010000101000111011100110010110001111100100001010110101011110000011001000010110101111011000010101111111111001010101001000110101100001011111001110011101110111100101010111110000001101101111111101111011001100010001110111011111...

Second Run Input

Bob
00100100100011010000100011001110100111000000111011110101100010111010111001010100001010110110011100110011111001000010101110110101101101101000111000111011111100101100011100101100001111000100011101011101100110010110110001010100100011100111011011010001111110001001101011110011101110000001010100100010...

Second Run Output

011101100011000111100100111101100111011111000010011010101100111111100010011110101010011010111110111011110100110111111011001101000010101101001111001001010111000000001001111000111000111001111101101000001000110110110100101110111100101010010001110111101101010001101111100100110101101000101001110001011011...

Third Run Input

Clara
011011011011111111101111011010011101001110011110011100000100111010110011001111010000101000111011100110010110001111100100001010110101011110000011001000010110101111011000010101111111111001010101001000110101100001011111001110011101110111100101010111110000001101101111111101111011001100010001110111...

Third Run Output

73 47
99 20
66 47
76 98
20 36
27 48
39 63
66 65
28 34
90 60
42 72
4 36
1 76
24 88
95 70
2 8
64 46
80 56
63 91
89 60
26 2
22 15
74 71
42 50
49 51
1 63
8 94
57 46
84 3
86 96
9 66
14 56
63 39
55 39
48 2
49 42
29 69
39 62
88 13
67 50
69 94
48 72
75 8
7 29
46 88
50 30
73 94
13 25
19 17
34 80
100 39
69 97...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #41:

score: 100
Accepted
time: 3ms
memory: 4212kb

First Run Input

Alice
011110111001011101110110010110101000111000011000100111101111101010101101000011010001111010000011111111001011100100110000100111111111000000010101010000001110100111001011010011111001011011111101100010110100110000010011101111000100001100110001101101111101111000011010011001000000100000111011100011...

First Run Output

010011111011000110110011010010011010010100000011101110000000110111101100000001010001110111010001111011001011011001101110100110111100000111011101100011111000010011010110111111000001000110001011101100101110010010111000001001101111001000011000110001000010101001011100101001011100001110000000101000110000...

Second Run Input

Bob
01010110000100000101110110000110100101111100001100001110111110001100110111000000101110000001011101110111100001001111000110110000110010101111000110110001000011111001110011111110101000010011110010000000000010110111011010000001101111011001000011101100111010010000110001000011000100101011110111000010...

Second Run Output

110111011101011110001110010001111000101001110100011001100111001100100010101010101011111111000011001011100101111001110111100111100000100111000100010100010010111101101000001110011010010010110000010110110100000001011100101101111010010011111101011010101011110101010100010110100001010101011101110110100001...

Third Run Input

Clara
010011111011000110110011010010011010010100000011101110000000110111101100000001010001110111010001111011001011011001101110100110111100000111011101100011111000010011010110111111000001000110001011101100101110010010111000001001101111001000011000110001000010101001011100101001011100001110000000101000...

Third Run Output

87 32
39 49
80 66
80 3
81 24
79 18
28 76
29 21
91 82
16 50
34 21
39 100
9 99
89 65
56 76
51 21
76 27
41 31
91 34
41 14
95 8
35 16
18 37
2 47
71 88
50 91
99 39
100 57
14 60
8 96
63 62
9 38
84 86
23 36
47 11
83 24
31 70
91 7
14 34
18 9
48 87
36 42
55 40
16 69
95 86
68 77
56 91
12 12
57 70
79 68
49 8
3...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #42:

score: 100
Accepted
time: 3ms
memory: 4480kb

First Run Input

Alice
101001110111011000100000101001110001000011110001000111011000101111011010100010011010011100111011111100110001100010111001111111011011100111101110110111110011101100110000000110111111000011101101010001000110111100010111001000110000000100101110010111100111001011010101010111010001101101010101011110...

First Run Output

101101101011011000111111111101101001001101110111111111100111000011000010101100101000101111101010100011010100101010100001001011001101001111111110110001010000101110000000101001111000100110101000101010010011111100010001101010010101101110110101110101101010110011010011010000000111010001001101110110101111...

Second Run Input

Bob
11101010111110001101001001000101001000100000111110101010011001100111100010001011110010100101111001101110111110101000111001101101011111101010000110011011000001001010111101101001010100100001001111011100001011000011000100000100100000110000000110110101111101110111101010110101100111110001110110010101...

Second Run Output

110111100011000100010011011011001100111110100110101010000010001010011011111111101101111011101101111011110010101101110111011010101100011111100101100111011001111011010000001001010101111100000010100010100100010101110111001001110011011010000001011101100110111110011101010111001101010111110011100000011110...

Third Run Input

Clara
101101101011011000111111111101101001001101110111111111100111000011000010101100101000101111101010100011010100101010100001001011001101001111111110110001010000101110000000101001111000100110101000101010010011111100010001101010010101101110110101110101101010110011010011010000000111010001001101110110...

Third Run Output

78 96
46 70
57 10
48 31
33 74
10 30
19 17
55 38
90 23
51 59
53 4
70 53
8 71
47 68
84 57
21 16
81 15
88 28
77 9
70 41
21 48
46 2
39 71
97 96
96 50
35 45
18 58
64 10
24 12
5 21
87 38
37 75
94 12
62 22
54 3
14 10
7 9
86 99
75 60
10 6
91 13
7 38
100 83
79 97
4 32
75 84
27 16
61 76
92 39
36 79
94 62
31 2...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #43:

score: 100
Accepted
time: 3ms
memory: 4364kb

First Run Input

Alice
000011100110011100011011111011011010001010101101101011100110010001111001000001110010000011000010010011010101111111110000101111101000110001100110101100001000010110100000010000001110110011100001101110100001100111001011011000101101010111100111111110010011100110111010001100000011001000001100011111...

First Run Output

101000010110100000001000100101000101100101101110101101001100010000001011110110110011101100110000000101010101000001111100110011100000101110101001100111001100001110110001011100100011010000100010110111110010001100010001001111001000001110100101011011001110001010100010100100100001000010101110010000001011...

Second Run Input

Bob
10101110000110001000100001010000011100010011001111011011110001011100001101000111111100010111001111001011010011110111111011011101000001100010000100011000111011101100111000010000011110010001010100100011010010010101101011100111110100100010110101001110011100101000111011100100010000011110100000011111...

Second Run Output

001010000010100011111100011111100111010111010010100111110010111011000101111000110000010110000010111100010000100101011011111000100111010111111101001111010010010000111010000111011101010101000110011001001000100111100110100110001110010001011111000110110111010001101100111100010011101101100110011101101100...

Third Run Input

Clara
101000010110100000001000100101000101100101101110101101001100010000001011110110110011101100110000000101010101000001111100110011100000101110101001100111001100001110110001011100100011010000100010110111110010001100010001001111001000001110100101011011001110001010100010100100100001000010101110010000...

Third Run Output

91 87
30 100
3 50
12 88
89 8
55 6
18 90
14 83
30 21
10 97
79 58
74 36
82 69
32 68
56 5
96 79
22 3
78 55
30 36
32 17
66 54
66 44
98 40
15 86
84 50
7 90
64 39
63 12
83 10
57 94
39 98
34 62
94 79
60 65
16 64
24 91
13 1
57 33
68 38
74 68
38 15
48 54
14 54
100 55
17 34
59 12
97 34
45 10
3 63
61 5
55 31
1...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #44:

score: 100
Accepted
time: 3ms
memory: 4224kb

First Run Input

Alice
011001110000000001001101100010011000110111001110110011101011111010110001011011100011000001111010010000100001010011011010100010100011100110010110111010111010111000000100011110000000000110111010011000010111000101111101110111011011010011110011001001110011101000011010010101010011011100100111001111...

First Run Output

111100100111100000010000001000110010010010000001110110010000100000110000101101110010001101100100000011000010101111110000111101000011110001101100001001011010000110110100010100010010111110111101001001100101100110000111000000111001000010110011000111011011000111011101001100111111110000000011000011100111...

Second Run Input

Bob
11010100111000100011100001111101011000001101101101000101100110000101111111001010010100100110100110100111100100000101010101101010010100101110001100100010010110010011011010010000010101011010001001000001100100100110000111000000100011101110111001110011100111111001110001111110010001100000101111111110...

Second Run Output

000010001011111101000110111101011100111000011011011111011100111001000110110011000000001100110110000000100101100001110111101001101010001101000110010010110100100100101100100011100000001011001001011010001000101001000001010111001011110101011000101000001010011001101000100111101110001001000110100100010010...

Third Run Input

Clara
111100100111100000010000001000110010010010000001110110010000100000110000101101110010001101100100000011000010101111110000111101000011110001101100001001011010000110110100010100010010111110111101001001100101100110000111000000111001000010110011000111011011000111011101001100111111110000000011000011...

Third Run Output

59 23
54 57
36 50
36 52
67 47
68 26
88 31
85 40
83 26
70 14
91 92
95 72
47 15
96 61
60 52
100 21
91 62
92 77
93 40
17 32
19 85
30 72
53 79
46 90
59 4
29 69
80 74
11 69
35 61
68 21
97 30
54 53
50 9
18 54
35 48
23 96
86 64
86 14
82 91
55 97
86 7
30 17
64 3
68 94
44 74
50 39
3 72
58 65
72 1
26 45
79 72...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #45:

score: 100
Accepted
time: 3ms
memory: 4512kb

First Run Input

Alice
100010010001011001101001111100100111000111010110100100110111100001101101000101000010111000001010000100011110111011101110010110101101100011010111110000000011011110011000100100111100100110000110011101000101010111000110101101100010100010011100011111001101100001010011011010001101011000111001001010...

First Run Output

100010001111001110111111100011100011101010100010011100111111111010100100110010111010001100111101001010110001010000011011011110010101110011000011111101111111111101110011000011011111111011110110111101101100011010000110010111001111010000011100111010001101010000101011011101010110001010010101010001011110...

Second Run Input

Bob
01110010000000100101011001010010010010001001000100011010000100011100000110100101110101111101110010010100100011010100110010000100100001101100000011101010101110000001110001001011000000101000100111011000000011001000010000101001101101110101100010111110111101011110001010111100101001111111001000000110...

Second Run Output

000001010011101100111001011011000011110100010011001100010111110110100010100110011101100101000000010111010000110111111000111111111010001111010100100111010001001010001110001010111000101001110001000100100110111000101001000110011011001101001100110100110001110011010110010101111100111011010100001110110010...

Third Run Input

Clara
100010001111001110111111100011100011101010100010011100111111111010100100110010111010001100111101001010110001010000011011011110010101110011000011111101111111111101110011000011011111111011110110111101101100011010000110010111001111010000011100111010001101010000101011011101010110001010010101010001...

Third Run Output

79 35
10 80
6 64
92 73
30 39
40 97
95 13
44 92
60 51
95 16
74 76
83 46
80 65
64 93
79 51
64 60
92 35
3 90
22 80
82 45
92 52
67 84
70 12
16 12
67 92
77 7
50 27
53 89
100 23
41 72
78 70
5 76
94 42
44 8
52 36
24 99
86 42
13 26
42 68
55 53
81 8
99 37
8 84
75 71
15 86
68 46
27 31
99 3
93 84
94 30
95 70
4...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #46:

score: 100
Accepted
time: 3ms
memory: 4520kb

First Run Input

Alice
110010011110001110000001101111100111110001101011011000100001110000101011011111100010001111001000111110010111100001100101100001011100111001101101111110110101001001011011100110100010101101101001001001101110100010101001001011010101010111000100011110000101000101101101101010101011000001011111110000...

First Run Output

111110001100001010001000001111010000111011111100001100010000000010101010111101111001100010010010010000000001000011101101101111001101000100100000011011110101111111001010001111101001001010001001100100000100000100000000010001101100101011011101110111000011011110010100101000111110101011101101110000100000...

Second Run Input

Bob
11110001110001100011001100000001100111110001011111111001111011101010011110010000001000010111111111110111010011011111111010110100101110101011011110011000100011110010001000011101011101101000011110111101100101101100011101010100010001010001100010010001100101111100000101000101011100001111101111100101...

Second Run Output

111011100100111010110001110101001000111010011100110101100110101100101101100111101100111110001001110001110100000101000111100011001001101001001001001001001100000101100110011001011001101110101110110101010010100110001111111101010100111100111100101001001111110111110100100111100101010000110010110010001100...

Third Run Input

Clara
111110001100001010001000001111010000111011111100001100010000000010101010111101111001100010010010010000000001000011101101101111001101000100100000011011110101111111001010001111101001001010001001100100000100000100000000010001101100101011011101110111000011011110010100101000111110101011101101110000...

Third Run Output

19 21
24 40
6 8
20 51
42 98
5 91
47 56
54 75
91 13
69 35
32 35
73 60
2 72
97 6
32 41
38 43
45 61
73 74
50 65
70 38
51 11
14 73
68 33
54 38
22 27
60 26
33 85
96 68
85 56
77 69
45 5
88 65
58 7
34 61
33 11
76 67
37 5
83 71
70 23
95 55
27 51
100 55
90 43
39 60
34 1
92 47
20 83
56 100
77 73
72 24
58 47
7...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #47:

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

First Run Input

Alice
101111100101001000111010001001110111110100110011110010111110110110000000100100101011011010011000011111101111111110010000100000010000100001001011111101010101011101100101100000001000101101111011110100111000000100101110101111101000001010001001000011001011100000101010000101101100101110110000011001...

First Run Output

100110011001000101001100010001110011011011001010101110000001001111010000001000110011010010001011001111100011101000010100000000110000100011000001001001100101100100010100001000110111010101001110011010010010111100100101110111100000011011111010000100100001011100010000101010100101011100100010011101110010...

Second Run Input

Bob
10111101111110000111000001110111100001100100011111101111000011111000000010011101111110001100000011001100010011001001011001111110000001100001010101000001100010111111100001011101111010101000111001000000111110111111000010100100111111110010110100010001101111011110111001111011010001000010010111000100...

Second Run Output

011111110011011010010001100111101110111101101000010110000001010000010110000100110100111111111000010111011001001000100101101011010101000111011100110111011100011001000011011110101110101111111101111001101010000001010100110000000011000010000011101001100000001110001001000010101101100111110010110110001110...

Third Run Input

Clara
100110011001000101001100010001110011011011001010101110000001001111010000001000110011010010001011001111100011101000010100000000110000100011000001001001100101100100010100001000110111010101001110011010010010111100100101110111100000011011111010000100100001011100010000101010100101011100100010011101...

Third Run Output

78 45
3 18
72 22
33 42
91 61
26 21
54 24
36 11
48 18
16 100
63 51
16 15
49 41
4 72
63 56
46 49
33 73
46 48
40 10
96 64
51 86
41 4
23 52
23 71
58 43
97 7
7 33
84 33
12 43
46 4
90 100
52 6
80 19
38 8
18 93
93 11
33 14
97 33
26 2
61 61
66 85
72 63
55 39
83 95
21 84
35 91
9 76
87 11
76 22
71 41
60 48
61...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #48:

score: 100
Accepted
time: 3ms
memory: 4524kb

First Run Input

Alice
101100110111101110010100110101111111111100001100100001000101010010001110110111101110100000010010010011111010001111110000100101101110000001111010111000110001110110000000001011001000011100100101100110111111001010101100111110101111010010010110101101100101000110000000100110000100111011001001001000...

First Run Output

001100011000111101000000100010101110100100111001100101011111011101100100011110000111001110000100001010011000011011100111101001000011110111001000010110111100010101010101010101010001000010010111100010010101110001010100001010000101100010101110101101101001001011110111000101001101011010101100111000100111...

Second Run Input

Bob
01010010111010001110000001101111010101100001001000100110011100000001011101100011100110111100110001100100001011001011001111000010011011110110000011111011101110001110000011001000010101101100000011100011111100111011111000010110011100100011110111111100101000010101010000011110101110100110111100000010...

Second Run Output

111100001010111011001100101001110010100010100010010000001010101100110101011110001100110111001001011111000111010011000110110110000011101100100111111000110011110111110110001001101111001110001110010111001001000111101111101101010110110101001110011101010001110000111101100000000011001111000010111011000100...

Third Run Input

Clara
001100011000111101000000100010101110100100111001100101011111011101100100011110000111001110000100001010011000011011100111101001000011110111001000010110111100010101010101010101010001000010010111100010010101110001010100001010000101100010101110101101101001001011110111000101001101011010101100111000...

Third Run Output

50 72
64 50
94 27
83 3
83 84
56 36
36 33
63 85
23 56
94 37
88 70
44 82
3 6
100 70
74 98
93 28
22 14
3 60
48 33
100 18
33 38
86 99
29 30
22 89
37 67
86 4
97 40
15 18
36 53
41 63
37 80
46 42
73 47
45 25
58 58
99 79
48 74
65 76
15 52
45 8
83 62
34 70
87 63
58 94
13 3
51 82
34 49
36 50
31 77
7 25
66 22
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #49:

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

First Run Input

Alice
100010001101000001101000000101001000000010011110011001100001101100101101100011111101111111010101010100110101011111000011010000001001000100010001001001000110000101110111000000111010001111101111011010111000111001001100001100110000011000001011111001001000110111001000010001100001111010001100111100...

First Run Output

000011101010110000000011110001000101101100011011011000010011101000010000011011011101111101100100000011101111010000101110110111001101000101011100100110010011110110111110100101101000110000101100001011101011010110001110101100010001110010111000010011000110011010100011000111110000001100101111111011100111...

Second Run Input

Bob
10110111100100101010010101011111110111000100111110101000010000110000101100101010010001101111000000100110001101111001000111000111101000011000011011100000101111001111111101010000101010011010011010001001111110011110010110010010110010100100111101101101001100000000100111001111001111101101110101100101...

Second Run Output

011001101101000001001110010101001100110010001010110010101011101101011001000110001101110001011111001000000010100010100011100101010100001110001111111010001000010000101011001001110001101111010001111100000110001011011101001000101011111110111010011010000000010110011001100110101101010111011110111101100011...

Third Run Input

Clara
000011101010110000000011110001000101101100011011011000010011101000010000011011011101111101100100000011101111010000101110110111001101000101011100100110010011110110111110100101101000110000101100001011101011010110001110101100010001110010111000010011000110011010100011000111110000001100101111111011...

Third Run Output

49 30
37 48
68 11
64 32
52 64
46 35
33 81
49 80
60 92
36 65
27 59
19 34
85 12
72 56
52 78
45 60
15 85
50 68
99 22
24 45
50 47
59 47
34 63
34 15
45 50
27 28
53 19
79 37
29 83
9 70
40 52
11 12
96 99
34 98
72 90
76 32
64 57
98 25
60 2
40 17
41 51
23 24
24 39
44 62
22 90
32 77
74 48
37 80
30 35
89 93
28...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #50:

score: 100
Accepted
time: 3ms
memory: 4220kb

First Run Input

Alice
011101111011010000110101011001001111110001011011001001000001100111010100000001010100001001001011100110010001011001001101001010011110100101101010101100001101111000110101000111010100010011001000110010011011000110001110101110100111100000110101000111111001110111011110101000110001110100101010011110...

First Run Output

110001000100100001001001110100110011110010101101101000001000110001110110111101100001110110110001101101000111011100011101010101100101010111111101111100110001111101100110010001100101000100101000100110111001110010100010000101000001001001001011001100011111010110010011011010000000111111011111011010011111...

Second Run Input

Bob
00110000010000111010010011111110011011110010100110101110100011011111001010011001000011100101100100001000110011010111011100011000001110010111010111110010100100101010001111000101110100101010100001101001111110010111100010110001011111101100011100000001011011111000101111010011000101101101011001101101...

Second Run Output

110010000011101100000011001011111101010110100010000010101110001001010101001011000011100011010011011100100001110001110100010111001111011111000000111101110101010101101001001010010100100100111011101101100011100100111010011011111101110110100010000011101110000000111000011110010110001001101010011110101011...

Third Run Input

Clara
110001000100100001001001110100110011110010101101101000001000110001110110111101100001110110110001101101000111011100011101010101100101010111111101111100110001111101100110010001100101000100101000100110111001110010100010000101000001001001001011001100011111010110010011011010000000111111011111011010...

Third Run Output

93 65
90 47
46 93
95 93
11 95
56 94
94 2
42 68
67 37
77 71
25 6
43 96
43 57
84 77
94 41
54 1
58 1
24 2
44 87
20 45
75 100
19 46
85 18
81 41
46 81
1 57
41 3
60 4
29 33
93 48
93 24
2 81
40 48
6 27
89 74
37 76
92 92
6 40
55 75
72 67
96 21
10 31
82 35
14 13
31 7
63 89
41 24
37 48
31 20
49 62
93 16
64 36...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #51:

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

First Run Input

Alice
111111110010101111000000111110010000011011100011011010011110001000100011010000111000000110001110011110111010001011110000101000110100010000111000011011011101100100000100110001011001000101101010101011011000010100110101100001110111011101101001011001010010001010100100000011010001110010010011011100...

First Run Output

011100110001101101010101000111000110100111100000010010110110100101001000110110000000101110100010101011011101101100010101111011100110100010100101101011110000100000111001001001011010110011110001111110100100101111111100110110110110001111001110100010011010000001100011111011011111101101000101100011100001...

Second Run Input

Bob
00110100010101010101111110111100011010110111000000101011111111101110000010010000111111010011110111111011110101011101011000101010011100000101010000001110000011011110101111100010101000100000001011010001010000011000010001111100000101011110100101101100100000110101100110010101100111100111010101101100...

Second Run Output

001001100110100110011010001011111110010010010001111111111011010111000011011000001110001001100011100001011011101000111101101101110010001001001101010100001101101010110100111001100011101011010010001010101011100000100101000000101110111100000010001000010011001110101110000011010100000110000010110111100110...

Third Run Input

Clara
011100110001101101010101000111000110100111100000010010110110100101001000110110000000101110100010101011011101101100010101111011100110100010100101101011110000100000111001001001011010110011110001111110100100101111111100110110110110001111001110100010011010000001100011111011011111101101000101100011...

Third Run Output

35 4
91 96
77 76
21 2
50 64
78 11
93 54
56 46
16 9
80 31
23 8
17 76
57 90
36 7
52 46
21 36
20 35
33 58
35 32
62 45
79 24
63 11
11 16
19 49
70 84
21 40
99 84
31 93
89 2
78 77
35 63
55 64
2 43
72 64
57 15
16 98
25 98
12 69
71 83
29 92
77 41
24 62
68 40
18 54
34 48
58 35
80 5
91 47
27 45
29 36
40 52
75...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #52:

score: 100
Accepted
time: 3ms
memory: 4516kb

First Run Input

Alice
101100110100010110011000100110010110000001001001101100110010101110100100011000111111110100111010010001111101010010001111011110010000101100011010100010110111000000010011010011110101111001000000000111011110110001000110111110101111010101111001011110101000001110000010110111001001000000011111001110...

First Run Output

111101100001000110111001101111100100010111001001000011110101100110101001101101001010100100011101101011010000011100110100001011100101001001100010110100110111101000000110110010001111011111101000100011101010000101000011111100000100000100001010000010101101100110111111001011001111011011100000111011110000...

Second Run Input

Bob
11110100000000001110111011011110001001001111100110011011110101110010000101011100110100010010011001010111110011100110000001011010110011110110010101000001010011110111100001011001010110110000000100101010110010100101101000010011101111000110011011011010111011110010001101111010111000101011111010000000...

Second Run Output

100111111011010110101001000100000100000110100010111010011100010011101100000101100010001101010100100100000101111100100001111011110111100010011111000001100100011010111110101110111001000101001101110010110011100001100111011011010000000011110001101101001001100100101100001010000000011010010010011000000001...

Third Run Input

Clara
111101100001000110111001101111100100010111001001000011110101100110101001101101001010100100011101101011010000011100110100001011100101001001100010110100110111101000000110110010001111011111101000100011101010000101000011111100000100000100001010000010101101100110111111001011001111011011100000111011...

Third Run Output

25 75
33 41
89 19
81 73
62 64
23 72
31 87
86 25
71 47
24 16
6 70
53 51
57 28
68 7
17 20
48 54
33 11
38 5
23 37
53 27
93 92
7 66
57 7
72 57
96 82
32 74
96 49
64 14
48 36
14 38
88 70
13 100
67 26
52 31
72 34
81 4
15 25
83 61
1 95
54 26
88 23
1 31
16 35
48 5
8 38
89 75
85 70
85 85
33 27
63 100
49 3
3 5...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #53:

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

First Run Input

Alice
100100110100111100110111011111110101110000011111011001111110100100101000001110100011110010110111001100101101111000111010001011100001110011001001010001010000111011001010010000011111100100001001111001010110000111111100011001111110000000110100000111010011101000110100010010110101011110010010100101...

First Run Output

110110001111001100001101011010011000010000100111101101111101011011001100100010001101001101101001000110100111101100010100100000010111011110100001010101000101000111101100100001000101100010000011111001100111111001011110110111011101101000101100001100101001111111001001001001111101001110000001110111110111...

Second Run Input

Bob
00101101111010101000001110110110010100010100010010000000110100101001011110001110001001110001001111100101111011111001100000101100000001001001001000001111000000010100101110010000101100101110100000001100101111100110100010111110010111010101100011000100101000101110101000111001111100110001010001111100...

Second Run Output

010101110111110100000010001100101111011101000110111000101010110000111101011001100011001100101110111101011111101001000101001101101100000001101101010001110101111111100101101111001101100101100000111111100100101111101011010111000000100101100101011111100011101110011011011100100110110000101001110000101100...

Third Run Input

Clara
110110001111001100001101011010011000010000100111101101111101011011001100100010001101001101101001000110100111101100010100100000010111011110100001010101000101000111101100100001000101100010000011111001100111111001011110110111011101101000101100001100101001111111001001001001111101001110000001110111...

Third Run Output

63 57
100 35
27 12
79 63
80 54
82 69
64 25
50 33
89 29
56 96
93 32
55 79
13 12
26 24
49 88
11 55
84 8
67 37
1 88
28 79
60 40
48 83
30 38
21 70
63 44
96 84
36 81
56 50
24 81
92 3
26 6
36 42
53 43
69 94
50 48
38 7
13 92
34 76
76 91
52 98
70 68
1 39
27 72
2 55
90 12
82 49
37 9
9 45
74 71
22 55
6 94
67 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #54:

score: 0
Wrong Answer
time: 1ms
memory: 4216kb

First Run Input

Alice
100100001010100101000110100000011011011001000010101001001010100010101110100110000001101111001101000101101011001000011101101111001101011110010101000110110001111010110000001001111011101110110011000011101001110110011010001000001010100011000111100101010001001011101111011101000111101110101100011001...

First Run Output

011111011000101100010011110000001000101111001101111000110101110110011000011001101001000011001101101111001111001010010011110011000000100111001011000100011110100001110011100000001100001100010001010110000111010111111111101110101101011011110111101011111000010001011011001001101100111011110010011011110101...

Second Run Input

Bob
10101010010001111011110101001101001111000011100010001100101101001001101100001101100110111010001000100001010011000011110100100010001110111101100101111111111100010101111111111000011011011000111101010001110010010011110111100101101000010011000101101111110000011111000101001000011110101111111101111111...

Second Run Output

111110000100101010011100011110000010011110101011100101001111010100000101100000111001010010011101011011110000101111101110111001110110110110101101100101001000001110000111010001100110001100010100010011111011111010101010010001101111001110101011011111110100010110100111110111011000101111010110010111011001...

Third Run Input

Clara
011111011000101100010011110000001000101111001101111000110101110110011000011001101001000011001101101111001111001010010011110011000000100111001011000100011110100001110011100000001100001100010001010110000111010111111111101110101101011011110111101011111000010001011011001001101100111011110010011011...

Third Run Output

29 3
97 65
67 90
12 51
57 76
35 15
74 83
54 45
64 50
89 32
17 22
27 2
23 34
28 50
25 47
23 16
96 84
37 72
49 57
37 27
37 17
68 5
80 89
53 82
51 27
88 63
59 67
71 3
33 89
29 42
69 49
59 93
13 93
96 68
55 49
37 86
19 51
63 74
97 67
63 12
43 88
3 4
33 32
55 45
67 41
92 89
47 96
79 45
80 10
57 7
66 78
9...

Manager to Checker

WA
You answered 46 (out of 100) questions correctly

result:

wrong answer WA