QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#321443#4675. Multiple Communicationsbachbeo20070 1ms3912kbC++232.6kb2024-02-04 18:53:572024-02-04 18:53:58

Judging History

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

  • [2024-02-04 18:53:58]
  • 评测
  • 测评结果:0
  • 用时:1ms
  • 内存:3912kb
  • [2024-02-04 18:53:57]
  • 提交

answer

// Judges with GCC >= 12 only needs Ofast
// #pragma GCC optimize("O3,no-stack-protector,fast-math,unroll-loops,tree-vectorize")
// MLE optimization
// #pragma GCC optimize("conserve-stack")
// Old judges
// #pragma GCC target("sse4.2,popcnt,lzcnt,abm,mmx,fma,bmi,bmi2")
// New judges. Test with assert(__builtin_cpu_supports("avx2"));
// #pragma GCC target("avx2,popcnt,lzcnt,abm,bmi,bmi2,fma,tune=native")
// Atcoder
// #pragma GCC target("avx2,popcnt,lzcnt,abm,bmi,bmi2,fma")
/*
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
typedef tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update> ordered_set;
- insert(x),erase(x)
- find_by_order(k): return iterator to the k-th smallest element
- order_of_key(x): the number of elements that are strictly smaller
*/
#include<bits/stdc++.h>
using namespace std;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
uniform_real_distribution<> pp(0.0,1.0);
#define int long long
#define ld long double
#define pii pair<int,int>
#define piii pair<int,pii>
#define mpp make_pair
#define fi first
#define se second
const int inf=1e18;
const int mod=998244353;
const int maxn=200005;
const int bl=650;
const int maxs=655;
const int maxm=200005;
const int maxq=1000005;
const int maxl=25;
const int maxa=1000000;
const int root=3;
int power(int a,int n){
    int res=1;
    while(n){
        if(n&1) res=res*a%mod;
        a=a*a%mod;n>>=1;
    }
    return res;
}
const int iroot=power(3,mod-2);
const int base=131;

int f(int a){
    return a*a;
}

void solve(){
    string s;cin >> s;
    if(s!="Clara"){
        string res;
        for(int i=0;i<100;i++){
            string x;cin >> x;
            for(int j=0;j<30;j++) res+=x[f(j)];
        }
        cout << res << '\n';
    }
    else{
        string A,B;cin >> A >> B;
        vector<int> a(100,0),b(100,0);
        for(int i=0;i<100;i++){
            for(int j=29;j>=0;j--){
                a[i]=a[i]<<1|(A[i*30+j]-'0');
                b[i]=b[i]<<1|(B[i*30+j]-'0');
            }
        }
        for(int i=0;i<100;i++){
            string x;cin >> x;
            int num=0;
            for(int j=29;j>=0;j--) num=num<<1|(x[f(j)]-'0');
            int px=-1,py=-1;
            for(int j=0;j<100;j++) for(int k=0;k<100;k++) if(!(a[j]^b[k]^num)) px=j,py=k;
            cout << px+1 << ' ' << py+1 << '\n';
        }
    }
}

signed main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);cout.tie(NULL);
    int test=1;//cin >> test;
    while(test--) solve();
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

First Run Input

Alice
111101001110010010001100100110111010100101011011100010101101001000010111100100110100000111101101111110010010000110000110111000111101010101011000000011011110000001000101110110101110010011110110110000100101110111000010010101010110011010001101100111001010100011001000100101100101010110000100001110...

First Run Output

110110100111010110111000101010110011001101101010101110101100011000001010100110000011111101011010100010101110110000110001101111100100010111010001110111101100000110110101001100011110011011001001001000100011011111101101101111100101111110110101111111111001001000101010111110111101010001011110001100011011...

Second Run Input

Bob
00000011100010001101011001011110011000101110001001000111010100011010001011101011100001110101110110110101111101110000110101010101000111101000110110001000010010100100100000110101000110110110111110100000101111101010100111000111100011000011111000000110000101101101001100111010001110110001101011101111...

Second Run Output

000011011001100011111100101101010111101101101101110010011010000110000110110100011111111000111000001000101100100010110010101001110011101011000011011100011001101011010111011011001100100100011000011011000010010011101101001000001010010110000110110011011111001111001010000001100111011110010011110111010111...

Third Run Input

Clara
110110100111010110111000101010110011001101101010101110101100011000001010100110000011111101011010100010101110110000110001101111100100010111010001110111101100000110110101001100011110011011001001001000100011011111101101101111100101111110110101111111111001001000101010111110111101010001011110001100...

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: 1ms
memory: 3896kb

First Run Input

Alice
110011001011111111001010001110111101101011010010111100001110010000011100000010100100001110000000010001010111111110100111100101110000101110011101101001001101111010000011110011111011000010010010111111000010101111000010001101100110100010100100111011110000001110100100101000011110100001001001111011...

First Run Output

111010110100111111110010010000010001000000100000110101100011000000101011100011001000010010010110001100111100110100110110011011011001010000100100110111100001010011100010110100010010000101011011111010101011101001000010111001001111010010111010010110000010100000000000101110101110001110110110010001000011...

Second Run Input

Bob
01010101110011100011010110001001000000001100100000000011110100010001110110111000000001001000101010010100011101011010000110010110000000011000101101101101001111111110010101111010010111100100000100101101110011000011110001101001001001001110101100100100110000110100011100100001100110000000010011111101...

Second Run Output

010100000000011001110010010011001110101100100001111111011111111101111110111001111110001000100010000010100000011101010010100001100010101101101000111111111111101111111111110100010100100000010101110001101110001100010010100110111111101000011001001010010111111010101110011001011011100100111111001010100111...

Third Run Input

Clara
111010110100111111110010010000010001000000100000110101100011000000101011100011001000010010010110001100111100110100110110011011011001010000100100110111100001010011100010110100010010000101011011111010101011101001000010111001001111010010111010010110000010100000000000101110101110001110110110010001...

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: 3656kb

First Run Input

Alice
001000011000111111000111100101001100110110010111010010010010001110100100011010001100001110101111000111001010001111101100001011011011110110100101111111101011010010100001011100111000111001110111000010111000001011010010001101010101110011100101110010110100001111101001011001000010110010011010011100...

First Run Output

000010111110111111100101010010000001000011011011010000110001011101101101111011101011001010111001010010000000011110100010010011010011111101000111010010001111100101101111000001000001100110011010010001110011110011100101000111010111010010001101111001110010011000001001101111001101101000000000100100010011...

Second Run Input

Bob
10101010011110101101100000011001110001111110010001100000100100000000100001100011101011011110010010001011000101111000111011101010001010101001101001000011011101110100100001101100011011111000111011100101000101010000010001001101000010010101010111000000101100010000100010010110001000010100110001001111...

Second Run Output

101110010011010001011011101010110001010101111011001110000101000000100010110001100110111101000110011001010011001100011111011000101010011011111001110100100001001001111001111000101100100111111110011000011001100001001010001000011101000110111001011111011110001111000001000110010101011110111100011001101110...

Third Run Input

Clara
000010111110111111100101010010000001000011011011010000110001011101101101111011101011001010111001010010000000011110100010010011010011111101000111010010001111100101101111000001000001100110011010010001110011110011100101000111010111010010001101111001110010011000001001101111001101101000000000100100...

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: 1ms
memory: 3700kb

First Run Input

Alice
000000000110111100010000100100010011010001001101010110100000001101111101001101111100111011101000000100001000101100011010000110011001101101001001010111111000001001110000101010110100101111010010011101001000100001000100010000110110010111000000100011001111111100100100101110110100000001101110110101...

First Run Output

000100010100000101000001011101010000011100101000101110001001011100110111111011010001010000101100100001001100001001100111011001100101111000101001011100111101111001010011100011111101110011001110100110101001000010000001000010010110011001011011011111010101110001011000010011101001001111110001100000011100...

Second Run Input

Bob
00000011001111111001100001110110000000001100010100001001100100110010011100010110000101101000110100110011010011011000001101110100110110100011000101011111000111110111000010100101010111100001100000001011010111101111111111100100101010010011001111110000100000000110001100000011011110001110010011110011...

Second Run Output

000011000001001001001110111110101011101110011011010000101110000011100001001000110001011110010101010111100000000011000110011100001101110111110111111010001011001110001100011011100100110101001101101011110010100001111101001111010110011001111000011011101000101100000010111010100111010111101011010011010010...

Third Run Input

Clara
000100010100000101000001011101010000011100101000101110001001011100110111111011010001010000101100100001001100001001100111011001100101111000101001011100111101111001010011100011111101110011001110100110101001000010000001000010010110011001011011011111010101110001011000010011101001001111110001100000...

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: 3672kb

First Run Input

Alice
100001000101000000001001010101011111110000000111110110011111100101101101100000000001100000101111110111011011011111100100010100110100001101110111010100010000101101010100000010100100010011101111110111101101011111000001111001010000011001010000101011001111010011110010100111010000100111110110010001...

First Run Output

100101110011001011110010101101100001010111001100000011101100110101011100001001101010000011011011101011110001010001110110011000010101110001111111000111111111001010000100101011111110010000111110100000111000111101001001101010000000100101011111011100111101110001011001010110010001100110111001100010100010...

Second Run Input

Bob
00101010101010011010000110100111110000011011010010100110101000001111001111110000110000000010111110011110000000100101001110111011010011111100111111010101110101000100110101110111010100010110000110101111101100100010010111011111101100101100100011100100001010011011011111001001111010010100010011001000...

Second Run Output

001010001110111011111001001011101001001111111100110100010101011001000010010110110110000111101101011001011001111011110101100111001011010000000011100110011111101000110000011010100010110110011101110010110011011101001100001001100011011111000001100000100110101100101001110100111000101001111111100010000010...

Third Run Input

Clara
100101110011001011110010101101100001010111001100000011101100110101011100001001101010000011011011101011110001010001110110011000010101110001111111000111111111001010000100101011111110010000111110100000111000111101001001101010000000100101011111011100111101110001011001010110010001100110111001100010...

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: 1ms
memory: 3828kb

First Run Input

Alice
000110011011010000110110000001010011011001110011000000001101100010111101111001110110101001110011111101101000011000100110001101101010010110010000111110001110111111010001101001101000011111110010011111001001111110101001001011000000010101100010111001101001101100111011100111110011101101000100011110...

First Run Output

001000001100101001110110011110011111110110001000001011001000011010010001101001011001000010001100110000110101001100001001110011000110100001101010011010111101011100010110001101011111101010011000011100110101101000110001110010000111101011110001101001011000110101011000100110011111101111000001110111011101...

Second Run Input

Bob
00110110101101100000010111111100000101100011111111100011011000001010100011011000001010001111010100110000011111000001000000100100110000010010111010100101001010100110010010001001011001000100111010110111011110010001000111011010001101101000110111100110000011000100111011001100010011011010001011101010...

Second Run Output

000001011000100001101001010100100100011010000011010100010110100101011001111011100011010010010001110111010101101111010001010110011011000010111000001111001110110100111010100100010100101111101010101101110110010110001101110011011010000011111110001000011011010111000101111010010001100001001011001111100101...

Third Run Input

Clara
001000001100101001110110011110011111110110001000001011001000011010010001101001011001000010001100110000110101001100001001110011000110100001101010011010111101011100010110001101011111101010011000011100110101101000110001110010000111101011110001101001011000110101011000100110011111101111000001110111...

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: 3660kb

First Run Input

Alice
110011100001011110101111010010000100011111111100000111100010101101000101010101110100011001100010011111011000101000100001111000000001110011111000110001110110000110111100101000000100110101011011001011011011111111100000001000010001101000010101111110010010001000001010001001111100000100111000100100...

First Run Output

111011000111101000010111001100101000111011110011000111100100110100010010011010001111110110110001111011101101101100010011111010110011000100101001110010010111110110001010011111010001010000101111101011000101110001000100001010110110000001100010001010110000110100100010100111100110111001100011100100111000...

Second Run Input

Bob
11101101001000111010100111001010111000010111010010100011001000101011111101000000110111001111001010101000100011010101000001001000010000001111101110111010000000100011101000101001110001101010111111101111111010011101110110001010101000011011110001111010101110111001111111110110011000011100011010100000...

Second Run Output

111011001111101010000100111100100011010000000100110111011111000011010100100100111101110101000010011110011111000010111101011011000111010010001011011101101011100010110001100001100000000010001100101111011110011111010000010111011100101111010101010001001010111111000000011111111110000111000111010001011000...

Third Run Input

Clara
111011000111101000010111001100101000111011110011000111100100110100010010011010001111110110110001111011101101101100010011111010110011000100101001110010010111110110001010011111010001010000101111101011000101110001000100001010110110000001100010001010110000110100100010100111100110111001100011100100...

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: 1ms
memory: 3824kb

First Run Input

Alice
001011110110011111111111110100101100111101100011110011000011101101101100000111010111101100001011010010100001000011000101111111000100100101010010111110101011111110010010100111001011110101101001101001101000010101011110101011001010011010100101010011110011010111011111110110110110100001000101011101...

First Run Output

001111110111100011100000000110110001111101110111001011101001000111110000001111110111101101001110000111001100110001011000010001101001011010110010000110010101110110100001000110001011001110101110011001110010010010101010101101100001001010101011111111001101010100010111111110101101100011101111111000111000...

Second Run Input

Bob
11000000110010101110010101111100000101011000100011011101101001111100011100010010001100100010111100101110110100101110001001011100110101000111101000001110001101001001010010111000001000000001101011000111010011101100100100110110000111100101011100010111011100100011111111001111101111100111110111111001...

Second Run Output

110111011011000001010111000011100001001111101111000000100001011011110010100111101111011100101100111000001101001011101010111010001101100000011001110010011001101011111110100100100001111000010101010001110101111100100011001101000100010100011010000110010011111101100011010011011100010001010000011100101011...

Third Run Input

Clara
001111110111100011100000000110110001111101110111001011101001000111110000001111110111101101001110000111001100110001011000010001101001011010110010000110010101110110100001000110001011001110101110011001110010010010101010101101100001001010101011111111001101010100010111111110101101100011101111111000...

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: 1ms
memory: 3864kb

First Run Input

Alice
100000111110010010110011110000010000100011011011110001110001001000100101001111101001001000101011101100111100100001100011001111011001011101100001100010001000000010110011101011101000011110111110011111110111111101110110110001111011111010110000100110110011001110010000000011000101101110000101011110...

First Run Output

100111110000101011011110000101001010000101110101110001111110001100110101101010000001001011110011101011111011011111010100010100111111000011101110001110100111101101001100010011100010111111101101100110100100110101101010110111111011111100111011101001100000000111100110000101101110111110000001001001110011...

Second Run Input

Bob
00111101110110010110011010111100000000011111110010110110111111101101101111001100011000100010011010101101001110100000110010011100110101010001001101111011110101110000101101111001000011000111000110001101011110011101000001101011101101111001111111111101011111100110110010110000011100010000110000011101...

Second Run Output

001100001110011000001101010000010010010101111001100111111010011000001000101111101010011100000100001110011101000001001010000000010101000111100010000000001000101100000010010110001011000001110010101000100111110111111000100011011010110100010000011010011111011011100100011101010010001100011001101001010100...

Third Run Input

Clara
100111110000101011011110000101001010000101110101110001111110001100110101101010000001001011110011101011111011011111010100010100111111000011101110001110100111101101001100010011100010111111101101100110100100110101101010110111111011111100111011101001100000000111100110000101101110111110000001001001...

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: 1ms
memory: 3660kb

First Run Input

Alice
010101011111100111010011110011001110100000100001010110000111001001010101011110110100000001010010110011001001000100100111101101000000101101111001100100101110001000000101001000111010000100111010100001001111001101011010110111001101010100010101011111010011100100110110101101101111110000010110001000...

First Run Output

010111110110100100001000001010011011010001101011011011101011011101001100010111111010010000000011101011010000011101111010110000111110101010011010010000010100110000101111011010001011001110000011000101011110000100011000111011010000001100011010011010011110100011101001010110101110010010000000010000101101...

Second Run Input

Bob
00111001101110101101111001110100010110011000010110100100011111000111101011100100010001000111110110011010111000101001010111000011001001011101001111001110010110111110100001100111101110010010000111000010101101101000001001110101101111110000101011011011101011011000000111001001110100010100001001110100...

Second Run Output

001011100111110011101110010001101111100100100100101111101111110001010000110110010000101001100010100001000000000111111111110010101010010010110110000011000110101100010011111010110000011001110101111000101010011110101111000110110111100111100101010010010011101001110011111100110001110100100001100011111000...

Third Run Input

Clara
010111110110100100001000001010011011010001101011011011101011011101001100010111111010010000000011101011010000011101111010110000111110101010011010010000010100110000101111011010001011001110000011000101011110000100011000111011010000001100011010011010011110100011101001010110101110010010000000010000...

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: 1ms
memory: 3664kb

First Run Input

Alice
111010101110011110010001100011100100110100011110101100110010001011001110110100111110001000111011101110101110011011011110100110011101100010010100101110000110101111111010011110001110111110101011001000110110010000010011010000010011110101000110101000101001000110111001000110011101011110110100010110...

First Run Output

111110101110110011001110001101100111010001000101000100101111110110101111110101101000010010100011011011100001100101111000011100111111111000111000101110100101001001000111001001100110010010100011000101011000101000100111110111000011100001001110111010000111110000000011000100001111111101100111111101101000...

Second Run Input

Bob
11010111100001001001010011001110011001010101011101100100110110011010011110010110010000001011111110000000101000100101010111100011101111000100000100001011111100010111001101001101000110100000011111110111001001000100101101110000100010110000100101001110011101011011010011010110110011010101011000011111...

Second Run Output

110011011101010010101110111111010101001110111010000001001101111110110001000011111010000011111011011101000110000010010110101100010110110100100000000100000001101001001110010001000001110000001100111100010110010010110000111101101011100100100100111010100000000000110010001100001111000101100100101010100100...

Third Run Input

Clara
111110101110110011001110001101100111010001000101000100101111110110101111110101101000010010100011011011100001100101111000011100111111111000111000101110100101001001000111001001100110010010100011000101011000101000100111110111000011100001001110111010000111110000000011000100001111111101100111111101...

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: 1ms
memory: 3856kb

First Run Input

Alice
011001100111001101011001000010001001000011000010010101011010011111100011100001100111100000011100010000101001101010101111100110010110000011100100100111100100111001110111000100000011001111001001101100000111000111101101011110000011011100100110001000001111001001100010000110010010110001100001011001...

First Run Output

010100011100100001001100010000000010000001110110010110011010001001100101100111101110101101000000100000101101100100000000110100010011010001111110101000000000001100100110010011110001011111111000101000000101011000100111001101111000010000011011111110010001001100101011111100000010001100111111001100101110...

Second Run Input

Bob
11011101001100001010010111110110011000011010011100111010111010111011101001110101010011111000100010010001001000111100100000111101100001111011101010110100001110101111011110000110111011011001011100101100010111010100101110001110001110000011001100001000111111101010011001101111101101111111001110111111...

Second Run Output

111011001100101010111111000101110010010010100011110110001111000000101010001111011110011101101111001000110111010110111001011110100100000010011000101011001100010100001101110111100010110010100010010010111000111110011000110111100110001001001101000110101000111100111011110101000010011010011111011001111000...

Third Run Input

Clara
010100011100100001001100010000000010000001110110010110011010001001100101100111101110101101000000100000101101100100000000110100010011010001111110101000000000001100100110010011110001011111111000101000000101011000100111001101111000010000011011111110010001001100101011111100000010001100111111001100...

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: 1ms
memory: 3896kb

First Run Input

Alice
010000111000110000011000110100000111000110010111010011100100100001010100000101101001001011000011000010110011001001111001011101100010010101010011010000100101101100011010111110100100001000000101111101000100001100100111110110100000010100100111100011100111100110101100110111001100001010110100110010...

First Run Output

010001010011010011101010011011110001000111001100110010110011110011011111110110110010000111011010000100010010001010011100000010110011101000001101110100000110101111010110100100011001101110110100010101101101011101010000001111011001010010100010110101111111111101011100100101000100000101100101001010000101...

Second Run Input

Bob
11101001001011000001010000011010000101110010010010100100010110011000000011001100111010000011011011100110011000100101110111011110100011110001110100101010101111001100010011111110010011010001110110001000101111101010010111100101101111000100001110000010010101011010000111110110110010000111101101100001...

Second Run Output

111000001101011011110110010101110101011100001011010010101010100101000001010010001010101011100000111100000111100010111001100010110010001100011110101001000001010110010011000100010011001110111111011110001110100100001101100000101000100011011001001000110110110000001101011111011010100011100101101111000000...

Third Run Input

Clara
010001010011010011101010011011110001000111001100110010110011110011011111110110110010000111011010000100010010001010011100000010110011101000001101110100000110101111010110100100011001101110110100010101101101011101010000001111011001010010100010110101111111111101011100100101000100000101100101001010...

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: 3664kb

First Run Input

Alice
111000001000111000111101111110011010110000010011100011111111010110111111010101100100111101100000101110000111110001010001101110101010010011110111000011111000111101001111110011011010011111011100111010010001001000101100111011001100110110000100101000111001100000110001101101111111111000111111111110...

First Run Output

110001101110011101001110100101011011110101001010001011110001011010101111001110100110011001011011100000010111101110010000001001000010000000001111100101111010101100011000011111101100001100100101100111100110101111000000001111011100000011001010100101111110011111100100011110011011011011000101110010010010...

Second Run Input

Bob
10100111001000111111001001101010101011000111011100110101001001101101100110111101001100111010001010001100110001011100111011011110100010110001100011011001001010111010100111011010100011111011101001111001110011100100011111011100010000100000011010100010101101111010111000101000001101011010101010001001...

Second Run Output

100011101011111110100001100110011010011011100111011010101000110000000001100001110110100011010010001001101100101101001110110000010001100010101000010101100111111001110101110000001001010100000010101111100010000000000011010111111111100001110011101101010111010001000010110111010101010010000000111000011011...

Third Run Input

Clara
110001101110011101001110100101011011110101001010001011110001011010101111001110100110011001011011100000010111101110010000001001000010000000001111100101111010101100011000011111101100001100100101100111100110101111000000001111011100000011001010100101111110011111100100011110011011011011000101110010...

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: 3724kb

First Run Input

Alice
010000000110101110100000110110110010011110000100100000100110011110010110010110110000011010110000101100101100111001001010101011011100000110101111011011000011000100010000111011110001000101011010110011101011100001110001111010001111100111101110111010011111001100000000100000011101000100010010010010...

First Run Output

010111001000011101111111111101110110011011110000111011110011001111100001001000100100010011111110011101010111001100101001001001010000100110101001110010010100111010110100110110111000010111000010000011000011111110011010111001111011001001101101001011110001011010110111001110000000010101110101000100000000...

Second Run Input

Bob
01111000101011011010101001011100001111000001010000001011001101100011010010011010111001000100100000111011101100100101010000001010010101101111001111010100011101011110011011101101001111101101110011100010100010111001101110101111111101110010100001010000100010000100010001011000001011111110100011110111...

Second Run Output

011011100110110101100000101000101101101110110011011001110111101100010111110111111000010110001100101001111001101010011010000010111000000110001111000100110011101100001011101101110000000101010000010111110001010101011010010110000101111000111100011001010101111111000110111011100111101101000011111100010110...

Third Run Input

Clara
010111001000011101111111111101110110011011110000111011110011001111100001001000100100010011111110011101010111001100101001001001010000100110101001110010010100111010110100110110111000010111000010000011000011111110011010111001111011001001101101001011110001011010110111001110000000010101110101000100...

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: 1ms
memory: 3664kb

First Run Input

Alice
110011100111110010011010011000110000011110110000001001101100010010111100010011111010001001011101100000111000110101011110110101110010010101010101011010000001000011110010001001111101010110111111100110111001111011011100001011001100111011010110001000011001010110011011011000101010101110100111101010...

First Run Output

111111001001001110100110010100001100101010100011010010100110111011010100111101001010100101101010101011001011001010011101101011111111101001000101100010011110010000010100101110000100001001100100011111111001110111100101100001011001100000000101001001010111100110101100011010110010100001110010001111101100...

Second Run Input

Bob
00101111000101101010100111100100100000100010001001011000101011010101010111001111010011010110101110011000100011101011000011000000101110100111011111010101100011001001111110010101010110011100100111011000111100111110001110101111000010111000000110000011000001100010011010011001100010001000001010100010...

Second Run Output

001011010111101000010101011100001000010000100110001111010110011010010000101101001111111001010010000101001001110010011110101101101101101010111100011101100010110101000101100000010110110101110000100101000000101000010001100001100011010110110010001011001110000101101100100111100101001001000100010001111010...

Third Run Input

Clara
111111001001001110100110010100001100101010100011010010100110111011010100111101001010100101101010101011001011001010011101101011111111101001000101100010011110010000010100101110000100001001100100011111111001110111100101100001011001100000000101001001010111100110101100011010110010100001110010001111...

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: 1ms
memory: 3900kb

First Run Input

Alice
011011001000011010010000010001100000101110111011011100110101110100101001110011011011101011011101010010110001011101111000010001011111010010110111111111011110100000101011100011100001111111001001011101110010111011111100100011010011100010000100101001100100000011100000010110001100011100010100000011...

First Run Output

011011110011100010110011111011110011101110100101000010100100000111100111010100011011001000101011111000000001010010111111011110001110101110011101111011100010101000011101100100001100101101001110010010000100101110001100011110011001001111000010000010111010001001100010100111010000011001010010010111101010...

Second Run Input

Bob
00100001001110010010011011111000001110100011001101111011010101000011110100100110000110111000001110100100010110001101100010100101000000001110111101101110111000010111011011000101111000111001000010111001110111100100011110011100100010000001001000011100000101101010010000011110011110111100101101110001...

Second Run Output

000001110000011011101101001100001011001111000010001011011100100101100101100011000001110001100110000100110010101111011010110010101111100101010111010101001111000110111010011101101001000011101101110101001110011101001100000011101101110110001011100101111100101100001100111010110111101010011100011101110100...

Third Run Input

Clara
011011110011100010110011111011110011101110100101000010100100000111100111010100011011001000101011111000000001010010111111011110001110101110011101111011100010101000011101100100001100101101001110010010000100101110001100011110011001001111000010000010111010001001100010100111010000011001010010010111...

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: 1ms
memory: 3892kb

First Run Input

Alice
011101001100110010101111000100011101000001111010110010111011101110110011110110000110110001000101101001010101011011010000101001001010001110001011001010010011100001000100100101110011011000000000001100101110101101001110001001000111011011110101110000011001100011010010011011011011010000010011100001...

First Run Output

010110011100000110110111111110111001011011111101101101010001100101110111110011001011111101010110100111101100010100110000100010101000011100001000000101010111010010110111101010111001100100011100011101100011110111110001111111001011101111011110000110101010010100010111101100111100110001111101011000010110...

Second Run Input

Bob
10011100000000010101001111100011001101101111101111111010100100110100000010111101010011011110001110000000011010111000010001011000010010010000100010011001101100011001111011110001011001100011100011011101000110111110111001110110111000011001110111101001001111110000000011001011101011101011101101100011...

Second Run Output

101001010101111101010100000111110101101110110100101001100101110111101111010010010111111000111010100010101001000100000101010010110001011100010011100011101111111101100010110001111001011101010010111000010111100011110101111101111001010011100011110101100101110100000010111111100000100000111100110011011100...

Third Run Input

Clara
010110011100000110110111111110111001011011111101101101010001100101110111110011001011111101010110100111101100010100110000100010101000011100001000000101010111010010110111101010111001100100011100011101100011110111110001111111001011101111011110000110101010010100010111101100111100110001111101011000...

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: 1ms
memory: 3720kb

First Run Input

Alice
010010011010101010101000001101100000000000100101000110100100001010001100100111011110000101001101110010101110011010011100100011110100000100110101000011110011011011110001101111011010111011010101110100010110010110101010010111110111111011100100100001101110101011011111000100101101101000001000001011...

First Run Output

011010001110000110101011100110101010101001000000010110101111001000110000001010010001001011110110010000101101001011010010001100111101000110010001110111010001000000000110011111111101010100111101101100011000000010000001011010011011110011000000111000011001001100010000100100100111010001100001000001111101...

Second Run Input

Bob
00001110000101111110001101001110111000010100011001000110110000100001100011011111100000011010001001000101011010100101000000100111111110000101111000011010111111000010101101111010110100000110011001001110001110101100011001000010101101100111010101100001111000011101100101001000011101101111111011000100...

Second Run Output

001011010000011011001010001101000101011001101010101110010001111101010010010101101010111100011001000101001111110101110100010011110100110111111011000011101010010001010101011010001101110101110101110000010000011011100000110111010001001010010001111110110011010010111000110100101001111000100101010100110101...

Third Run Input

Clara
011010001110000110101011100110101010101001000000010110101111001000110000001010010001001011110110010000101101001011010010001100111101000110010001110111010001000000000110011111111101010100111101101100011000000010000001011010011011110011000000111000011001001100010000100100100111010001100001000001...

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: 1ms
memory: 3896kb

First Run Input

Alice
000111001011110111011010111111010110000001100101111100101001110011111001011111110110010101011000111111001100110101101001101010001001100001101011100011011000100000111100111111110110000110100101100001010110010110010011001000001000111011110011111101100010100010011011001000001110110011101000111011...

First Run Output

001011011110110011000010111110010001011000111011110011000100101000011011010001000011101010100000001000011110001000110111101111001110010101111100000011000110111110011000111010100010000100111010011101011001010101101011100100101011101110110011000110001000101010010111011001101001100011111100010101110001...

Second Run Input

Bob
01000001101000010111111111000011010110110110001011010100001010101011000010000001011100010010111110110000101110101111010000101110110100100001111100100111111111011100001100111110010101011001001110011011110101001011010011110100101101101100111011001100001101110000011001001100010011000011100101000000...

Second Run Output

010001111100001001101000100000110101100011101100100000111001111000010101110011010001100110001100010101110010000111110111101010010111110101011011000001100000011101000110000110101001100011011001100110011101101001100000110111111100111101111010100010101001111001011111010111110111000010111111000001101111...

Third Run Input

Clara
001011011110110011000010111110010001011000111011110011000100101000011011010001000011101010100000001000011110001000110111101111001110010101111100000011000110111110011000111010100010000100111010011101011001010101101011100100101011101110110011000110001000101010010111011001101001100011111100010101...

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: 1ms
memory: 3896kb

First Run Input

Alice
011100110111101100010001110100111011111010011101111001111100000100000010001010100100101011001001001101110000101000101010101010001100111111011000010110011011000100001001111011101100110100101110010011010011000000100000111101001100001001101010110101010010101001011011000011101000010111100001001000...

First Run Output

010101110100011100101100101101001011000001110111010100110111001000010001110011001111110111001000100101111101111110010110011111111001111000000001110100100101110101110110010011100000011110101100011010100000001111011100100011101110100100110011110101000101111100100000011110010101100100000011100101010101...

Second Run Input

Bob
10000001001000000101101010011110010110010110011010001000100001101001011110010010001001011000000001000000001001100101100010000110010101000011011001001011000111011011001011100110010000010110011010001100011010100111110110000110111001111011011001010101101011001101011001111100101001101010111110010011...

Second Run Output

100000101000011110010000000101001010001000111011011000101000001000000100011010001011110101110001011101010110010001010110100000110101011000010110100101111001100110000111001111011101001110101101010000111010001010100100111000101000101101101011000011001010011000010110000100000001000110001010011000011001...

Third Run Input

Clara
010101110100011100101100101101001011000001110111010100110111001000010001110011001111110111001000100101111101111110010110011111111001111000000001110100100101110101110110010011100000011110101100011010100000001111011100100011101110100100110011110101000101111100100000011110010101100100000011100101...

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: 3900kb

First Run Input

Alice
001111010010010011100111010100000010101110100110111111110111101010010001011100100110101000011101110001110011001101111010100001000111100100011110100110010011000001011100001110010110011010011010010001111010100111011111101111111011111100111011001001010001011111001110111001110001000010101010001101...

First Run Output

001011111100100010100100111100011111100100010000001110010101000001100010111011111101001101100111001100000001000110001111100111000010010001101000100111000100101000001010011110001110001111111110110101001000111110000110011110100111011010001111100000011111111001100100010110011001000010000011001010110111...

Second Run Input

Bob
00010000001101010010011110011101000001110101111011111101010011111011110100100111100001001100011101000110001111111011011110001101010111110111111101111001110001100010001100011000101101111101001110100000100011101011100000010100000101101110001010001110011010001101010110101001011011001001010001110011...

Second Run Output

000000011000000011101000110010010000010001110010010000001011001011000010100110011111111001000010100011010010111011000110001110001001011111001111111001101001111011011001111110111110101101010110111111001101010011100011100110001111001010011001010000010011111111111000100101111001111101011110011101101010...

Third Run Input

Clara
001011111100100010100100111100011111100100010000001110010101000001100010111011111101001101100111001100000001000110001111100111000010010001101000100111000100101000001010011110001110001111111110110101001000111110000110011110100111011010001111100000011111111001100100010110011001000010000011001010...

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: 3896kb

First Run Input

Alice
111111001100111011010000001111000001100111010010011000100110100000101111001100110110100011000010110010000010111100100101001000011101111100110110100011111011001000001101011100101011111100100100101011100011100101111000101111110011101111011101000000001000100001100000101100011000110000011010000110...

First Run Output

111110110110111000010011110100101001001010010010011011110111100000000010101011111110000000011110011000011100011110100000110110010011100100011001001011011000010010001000010001100110100011001111001011001101001011001111110001001000111101111100100101101100011011011101110111011110011111100010000101011101...

Second Run Input

Bob
01000100001010100010000101111100111001101100011100011000110000011000010001111110000101101101110000111100001100101010000110111010011100111111011100110011001011011001001011110111011000111000010101100000101000110010011010000010110010011001100010110010010111001000001010101100010011001111011100100111...

Second Run Output

010001001010010110111110100011111111101101101111010000001110010001110011100001000000001000001110010001011001000101110101110010110000110101000000110110101000101000110101110011101111000101010111010110010010110010110100001111010100110100010000100010000011111100010011111101001100001100101100010011001110...

Third Run Input

Clara
111110110110111000010011110100101001001010010010011011110111100000000010101011111110000000011110011000011100011110100000110110010011100100011001001011011000010010001000010001100110100011001111001011001101001011001111110001001000111101111100100101101100011011011101110111011110011111100010000101...

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: 1ms
memory: 3912kb

First Run Input

Alice
001001100010010111110100010010000010011001110010110000101011011000111101110000101111001001110011111110100101110101100000101000100100111001101010110111010010100111101001011101010010101000101101000101111010011110000100111010110010011010011110011100001101011001110111000001111011010001010110011111...

First Run Output

000011010110110001100011100100110000111111110000001011110101100010010000000010000000011101011110001000101100000100001110110111000010101111101110011110011000010110001011100111010110100000111110110001011001001101011111110010101111011010111111100011100100000001010110000100011100101100110011101101010111...

Second Run Input

Bob
10101010100110101011010011001111010101110010001011111101000001110111110111101100000100001110000010001011001111000010000100010100010110101110000001010010000000010001000001100011010001100111101010111010101111001101011110011000100111000011111010011010100000111000011001110000100100010110010101100100...

Second Run Output

101011010010011011010010011000010101010110000010010000011001111000001011011011010100100001010000001100011011110000011110101011011000011100000000000111001111100100101111010000000101010010011000010110010001110011110110111001110010000100101010000011000010010000011010100111010101100100011100001101110110...

Third Run Input

Clara
000011010110110001100011100100110000111111110000001011110101100010010000000010000000011101011110001000101100000100001110110111000010101111101110011110011000010110001011100111010110100000111110110001011001001101011111110010101111011010111111100011100100000001010110000100011100101100110011101101...

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: 1ms
memory: 3892kb

First Run Input

Alice
010110100110100010010100101011111001111010111000000110011100110100010011111011111110001111100100110110110101100110000101001000000010001010101010100101011100101101011111100101001010010001100111010001111010111101101110010000001000000100000111111011010110010101001011100110101011101011001011010111...

First Run Output

011110100110100001001111011010110001000100110101101000010110111001011000111101000111001000100011011001101100100010101000111010000000101001111100100110110001000010111111000111010001001101100000110100010100101101001000010100001101001110010100110111100010001000001011101010001100011110100001010010111101...

Second Run Input

Bob
01110100000001101010010111010011111001111100011101010001101110100101110111100101101100110011000000000011010010110110011000110011111101100010000100011111011100100111110001010101001010101001001101111110110110011010111111011110110100001001000100001000001011011001101111000010000110010010010110111110...

Second Run Output

010011010000011110100011010110001011000111100010100001100100001100001011110101001100001111000101001101100010010111100111111100001100101110111110011100111111000011100010011111111000001101100111001101111110000011101000011000010111100001100000001001000000100111101000001001010100010011011000001000000111...

Third Run Input

Clara
011110100110100001001111011010110001000100110101101000010110111001011000111101000111001000100011011001101100100010101000111010000000101001111100100110110001000010111111000111010001001101100000110100010100101101001000010100001101001110010100110111100010001000001011101010001100011110100001010010...

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: 1ms
memory: 3664kb

First Run Input

Alice
100100111001100011110100001001101100000111001100110101000100011000001010001101110010111010011110111111010111010100101110110100001110000010110101001111110011001111011000110101101001001010111111011010100100100101111010100010110100101000001111001110000100001111110000000010011100001000001110100100...

First Run Output

100010010011011110101100100000001110011110011001010101111101010100111001100000101011101110000011111010100000001110000000111001011100101111111110010111101011110011110010100110100000111111101011110110010010101110000000010110000101110011011010110000011100010111010100100011110100000000111001101000010101...

Second Run Input

Bob
01111100011101100010001100110011101100000011010101100111000011111001101111001001010101111100011000110001001010110101000110000101110000101011010100101110110110001000110101001001110111100110000010001111010110100100111010110001000010101111001000110010110011010001100101000000010110000101000011100011...

Second Run Output

011100011100011001110011011110100001100100111101001000101010000011101101011100010010010110000100101010000000110111111010110011011000001000111111101110110101000011101101111100001000111111111001111111101111111111000100111111100101101101000110011110110001100000101110111010010000011111010101100101010110...

Third Run Input

Clara
100010010011011110101100100000001110011110011001010101111101010100111001100000101011101110000011111010100000001110000000111001011100101111111110010111101011110011110010100110100000111111101011110110010010101110000000010110000101110011011010110000011100010111010100100011110100000000111001101000...

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: 1ms
memory: 3664kb

First Run Input

Alice
100111100001011010111110100110001001011011001001110101100001011011110001111100001111111100100100010110000001001000100001101100101001100100011000001111010100010011010111010100111011000100011111011001001000001100111011010011101100111001010110000010000010001011101111111001001011011010010101010101...

First Run Output

101010011110010111101000111010110111111100101100100001011100101101001011100101010011110111110110101001011100110100011111110110011010111011110000110000100110000000010000111001111100101000011100110111011010011111010111110011000011001110011110100000110110101010111111100001000001100011101110110100011110...

Second Run Input

Bob
01000010100010000101101011010000000011001111110011010001000001111111100000110101111101110100001110001000101010111101000011110100101101000011101001110110001000101000100111100101010000110010110110001000100011110100100001011111100100000011001001100100001000100100010100101101100101110011110101000111...

Second Run Output

010001111111011001001000111011011110110100000111010010101001111111100011111011010001011001110011111100101010010011110010111110011101011111010011001101111011111001111111101001010011001000001101100000001011100001100101110000011000011111011100010000100000110111011100010101110011101001000010011001110010...

Third Run Input

Clara
101010011110010111101000111010110111111100101100100001011100101101001011100101010011110111110110101001011100110100011111110110011010111011110000110000100110000000010000111001111100101000011100110111011010011111010111110011000011001110011110100000110110101010111111100001000001100011101110110100...

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: 1ms
memory: 3900kb

First Run Input

Alice
011101000001000101011100111111111011100100100100010111010100010011011000011110001101001000000111100000010010010111100000010010101000100111000110111101010111101110110100110001111011100001100110101110010111010001001111101100000101010000001111110011001100101000111001001000001010010010001110001101...

First Run Output

010001111101111100001011010000110110100100011010111010011110110000000010011100110110000101001111000001110000011110100100110011100001010101011011000001100100101110000101110110011111001111111101100100111100001111101001100101011111100110001000100101110100001001110011010101111010000101010011010000010001...

Second Run Input

Bob
00011000101011111110100100000011001101000010000010011111111101001000110000101001011001011011111110110111000111011000110010000010101000111000101010100010011100000111010001111000010100101010001000000010011000000101111101111110101111000000010010110110101000111111101011101111100001000000010000001111...

Second Run Output

001010001100110010001101101011011001110110111001001101110110101111000010100101010001001110100100000000111101011001000100111010100111011101000101110011111000100000101000011111101001111010010110111001010011011000101010011110101000101011101001010101011000110000110100000101101101110000010010111010100011...

Third Run Input

Clara
010001111101111100001011010000110110100100011010111010011110110000000010011100110110000101001111000001110000011110100100110011100001010101011011000001100100101110000101110110011111001111111101100100111100001111101001100101011111100110001000100101110100001001110011010101111010000101010011010000...

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: 1ms
memory: 3732kb

First Run Input

Alice
111001010011110111001111101100011110110101000101101100101111011000001010010100000100011011100110000110110101001001011101010100011011010010011010001111000000010010000111011111000101000010001111000110011011110110111111110000100101000110010101010111010011000010101101011001110110100100010111111111...

First Run Output

110010100111011111001101101011011101101110000110101011101011000110110011011000010010001101011100111111101001010110010011101110000101101101010101001011101100000010111111010000110110101010000010000100110000010111000101101010111001010100101000110100101010000010001111110110111100011000010010111011011101...

Second Run Input

Bob
00100111111111110100010001010101110000110101010111111101111111100011001111011110100101011001000100101001010010001000001010001000100000010001100000000111110000100101010101110101001100110011101000001110000110000000101010100011111001111101111011000101011111111001110010010000110001010010001111000110...

Second Run Output

000101010010011111101100111010001100011010100000111100011110011011000111100101010000101000101111011010011000110001101111101001110011000110100011001001010001010111010010010001010001000001000001110011111100011101100100011010110010111110011000110101111011101111001101110110011001011111100111001111111011...

Third Run Input

Clara
110010100111011111001101101011011101101110000110101011101011000110110011011000010010001101011100111111101001010110010011101110000101101101010101001011101100000010111111010000110110101010000010000100110000010111000101101010111001010100101000110100101010000010001111110110111100011000010010111011...

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: 1ms
memory: 3664kb

First Run Input

Alice
111011111101001100000011000000010110000101100001101100101111111111001011100000111111101011110101110110000011001001011100110000001111111001100010011011111101010101101011011110100101100001000011111001111011001010011000100010110100000011101000011010000110001110010101111100010000011110000000100100...

First Run Output

111100001111010110101000011110110100011110111111001111111010110111111111000110101111001110100100000100011010001000010101101101110101101001101111101001101010010000010110101011010110011111110111110101100011110101111101001011111001101100001010101010110001100111101001111111000111111111101001011110111001...

Second Run Input

Bob
00011101100100110100000011100010010000100000000011001001100011001001000100011101100111111011110111011011001111000001110011000001000000000100100111101000011010001011011011001000000010000111001110111011100000110000000111001011001100010011001000110010001010100011010000011000011111001010001111100110...

Second Run Output

001001011011111001001111111101010101000010001010011111111101100000101111000111101110001011110110000101100111010011001110111100100000101110000101110011100100100100001000101001010001100110100011110001100010111000011100001000110111001111010001110101000110111000011101100011010110111001101010000011011110...

Third Run Input

Clara
111100001111010110101000011110110100011110111111001111111010110111111111000110101111001110100100000100011010001000010101101101110101101001101111101001101010010000010110101011010110011111110111110101100011110101111101001011111001101100001010101010110001100111101001111111000111111111101001011110...

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: 1ms
memory: 3896kb

First Run Input

Alice
111011011000110010100010101110011100100011110101000000101011101111111000001010011111101111101010000111111101100010101000111001101010001011100110101001001101010111000100100010111100010011011110011101011110110101110001001001001110000011110110110001100100011011001010111111110001100001011110010010...

First Run Output

111010101111100111110111011010000100010011010110011001100010110111101111011011111111101100011010100111101101011001000111011101000110110101111100000001101000000111110011111000110100110110001010110001111010100100011000111001100100011110101011111000101100111011010101111010011111001001011011111101001001...

Second Run Input

Bob
00000111111101100111100101110011100011100111110010011110101111101000000010000110100010110100000000111100111011110001010011110111010100000101110010110000110110111101100000000100001001010100011110010101011111010111011110000100011000010111000110010110010100000100110001110101110010110000000001101011...

Second Run Output

000101101011100101100010011100001011010011100110011011010011001011010101111000101100100101111110001000000000010101111101110001001110010111000000111001010100000111011101101010011110001010011101010110011000000010000010111011011110101010011110111111001000111010110010110101111101001001011011010000001010...

Third Run Input

Clara
111010101111100111110111011010000100010011010110011001100010110111101111011011111111101100011010100111101101011001000111011101000110110101111100000001101000000111110011111000110100110110001010110001111010100100011000111001100100011110101011111000101100111011010101111010011111001001011011111101...

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: 1ms
memory: 3736kb

First Run Input

Alice
011101110001111011011001101100001000100100000111001100001100010010111010010101101111010111001111000101001110000101010011100000101100010110111100010111011000101010100010000100100011001001111100101101110100001011101111000011010100110000000101110111110100100101111000011000101111111111010110100111...

First Run Output

010010101100000100101001000111001100001001011111110100111100010000110111001101101101101111000011110010110010010110111010101101001010011101000101000011100001101011110001101010110100011111001100100010000111010110000100110001101000111000101000011100110010010000001000010100011010011010011110010110111011...

Second Run Input

Bob
01101110111011000100110100101001100101100111100010010000010001101001101101101110001000111010001001111111111001001000010110110100001110000001101000000000001101100110101100111111001101011010110111011111011110001011011011011100101101100101111111101010011001000000110011111000001011001111000000011100...

Second Run Output

011100001010001000000110101000010101101000000000010011010110110111111100100001101110000110000111111101101110011110010110001100010111000000111001110000110000011101100101110000101111010011101010011010100010011110000110010111101101100111001001110001101010000001110011100100010100111000010010000001010011...

Third Run Input

Clara
010010101100000100101001000111001100001001011111110100111100010000110111001101101101101111000011110010110010010110111010101101001010011101000101000011100001101011110001101010110100011111001100100010000111010110000100110001101000111000101000011100110010010000001000010100011010011010011110010110...

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: 1ms
memory: 3664kb

First Run Input

Alice
010011111111000111010110100010011110011101011101000000110011001011000000110111111010110101010110000001111110011010011100110101001001111011000000101100110111100111000110011000111011111110000000111111010001011011101010001101100100111110101100101101010110111000111010101000100000100000111100010010...

First Run Output

011110001001111101101111011100100010000000011000111101010111101010111111000101011100100100000100111110010110100110111000110111110100000011011001100111000000000000001001000000110100001000000000001111100100001100010101000110011101000110111111100111000111110101110101011100011110011111001110110101111100...

Second Run Input

Bob
00111111001111111011110001111100101001011001001000000000010100000001010111111010011101010100101011111110101100110010111011000110100101001010011010110001000001001111111101101001111000010010011110001010110110101100100001000010110011000000111001111011110101100110111010000100111000001100101010010010...

Second Run Output

001011000111111100010100101111000100111100111000010100011111000101101111101010010010010001001110100110100100100010110111110101100001110010101110110001011111010110000000110111011110001010101101111010101010000000000000011000100010010110100100000111000011100011100000101001101011000101010101110110110111...

Third Run Input

Clara
011110001001111101101111011100100010000000011000111101010111101010111111000101011100100100000100111110010110100110111000110111110100000011011001100111000000000000001001000000110100001000000000001111100100001100010101000110011101000110111111100111000111110101110101011100011110011111001110110101...

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: 1ms
memory: 3900kb

First Run Input

Alice
111101100011000111000000001011110100101110101010010101101010011110000011000101111111001011101001111111000000101011001001111010111110001011101100000100100010000000001010110101011000101001111011110110001000000011101100111000001110011100010010100110010101011110011011101100111111000000111111011110...

First Run Output

110010111111011111101000001111001001100110000001111110000100110010010011001010001000100111100001010001100100101000011101101010111110111101010011110011010001001010010101111101100000000001100111010101101101001010001000101000101000001110001011111111011100101100101111010000101011100111110000011010110100...

Second Run Input

Bob
01110101010000100001011011111100101111010100101111011011000110000100101010101000000001101110100111110001100111110111001110101110110010100000011111000010010011111101011010101100011000111100000000011011010100001110100101000110110101111010101111011101110100100001001111100110000110000011001101101100...

Second Run Output

010101110000101101111100100111101010000100101111000010110110010110100011000110000011101101100001000001010101111000100011110010001101110100110100001010111110011000100111001010100100110110101110011001000110101101011010110001000011010001100111000011000001111111001000110100110111101110011010000111010011...

Third Run Input

Clara
110010111111011111101000001111001001100110000001111110000100110010010011001010001000100111100001010001100100101000011101101010111110111101010011110011010001001010010101111101100000000001100111010101101101001010001000101000101000001110001011111111011100101100101111010000101011100111110000011010...

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: 1ms
memory: 3672kb

First Run Input

Alice
110010011101001111111011010001111010001001100110101110110011011101000010111110100101100011110110001011001001110011110111100101110000000100111010110101101100101010000111111110011000001100010101011100011110010001110110011001110101010100011010101011011011101001011101111001000100000011000101100101...

First Run Output

111111000110110100010101001011101111010100100000111111000110110011001100110111010000010001000011101001100100110110010100101011000111101101000100110101000011101011000101001100100110111011111111000101100011111001011110011001000000101010001011101011011010100110110010111001100100101011011101011010011111...

Second Run Input

Bob
11010111001111110110101100011100001110000011111101111110100101100000000111000100101111111110111010101001100000011001100100110011111100001101110110000011101001100111111110010100110110000110100001000110010101100100101010001000001010100011111000111101000001101100111001100100010001010010001110011000...

Second Run Output

110000110010100010111001001000110110010000010011011101000001000001011101001100110101010010110011011111110000000010010001111100111001011010011111000101001111101110010110110011001011111000010001101000001110010010001100000100110011011101100010111001011000001110110010011001110011100100100111011100010100...

Third Run Input

Clara
111111000110110100010101001011101111010100100000111111000110110011001100110111010000010001000011101001100100110110010100101011000111101101000100110101000011101011000101001100100110111011111111000101100011111001011110011001000000101010001011101011011010100110110010111001100100101011011101011010...

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: 1ms
memory: 3824kb

First Run Input

Alice
010010010011011010111010010011011111101101011000101011010110001100111111110011101010010001000010111111100010110111110000000010010100110010001101110001110101100101000010010000100100110011100101111100000011101100001110011110101100100010010101000111101111001111100101001001010111000010110111101011...

First Run Output

011011100010110110101011001000110000010001101110001100001111111001111111111110000111101010000110111011101011111110110000101101000110010100001101110100000000111101011100110110010000101110111100010000111100011001111001010100001101111110111111110111110100101110111011110010101010001011100011100010101001...

Second Run Input

Bob
11010100100001101011111000100001110111101001000110110001000001110100011101100000110100111011001100100101001110101011010010000111001111011011111101010001111010001000101001110100110011011101100101011101100011010011000100010100010011110001000001011100000001000101001111000001101011100110110100000001...

Second Run Output

110010100100011100100100000101100011011000011111001010101100101010000110000011011000101010001111101111100011010000001111011001111000011110100110101100110011010000111111110001101010011110000001101100110010101100100101000110011100100010010011111000111011101000101000010010011001111101001000100101001010...

Third Run Input

Clara
011011100010110110101011001000110000010001101110001100001111111001111111111110000111101010000110111011101011111110110000101101000110010100001101110100000000111101011100110110010000101110111100010000111100011001111001010100001101111110111111110111110100101110111011110010101010001011100011100010...

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: 1ms
memory: 3664kb

First Run Input

Alice
111000110110100100000001110100001000011101100110001010110011000010101111000111100101100011001101000100000001000000010001011000100111011001011010110011001001100010011101001000110100000100011010001100100011011000010011010100111001100111000110010011100111010001110101101100111001011101101000001001...

First Run Output

110101001101100000100001111010111101100111100110111110111100000100010000100101000110101100100111110110110100101000111000111111111001111110111010101010101110111111100110111100010011100111110111111011000100011100101101000011110011100111100101111010111111010111001100001010110000011011110010001011111010...

Second Run Input

Bob
01000100010010001110010101001101010111100011100011001111000100111000000000101010000010001000000010001110011111001001101010100100111010011011110100010100111100001101000000010110100110010111101101001010101010011111011000011111110000110010001000111111110100001111001110101100101110000111101000011000...

Second Run Output

010111111010001110011110100100110000111111100000100010101011000000111110110101000011010101001001111110000101110111010111001110001010111111100000011000010100100111110001111000100011000011101110111100010010110111110111111110110110100111000000100011111101011110101010111001100010110100001010011101101100...

Third Run Input

Clara
110101001101100000100001111010111101100111100110111110111100000100010000100101000110101100100111110110110100101000111000111111111001111110111010101010101110111111100110111100010011100111110111111011000100011100101101000011110011100111100101111010111111010111001100001010110000011011110010001011...

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: 1ms
memory: 3896kb

First Run Input

Alice
111100111101101100011100100010101011001111100011111000000010101111010110100100000001011010100000100111111011001111000101000111000110001100000000001100110110111101101000110110011111011010101001100011101000010110111100001010101011011000111100101101101110110101001011001011101010011111001110111000...

First Run Output

110100011010011001011111111000010001011100000101010101101011110111001000101101110111111010001100000100111000001100001111111100111111100001001011001000011111010101001100110101100101100010001001101110110100100101100100110001101000100100000011001110110110010000011100001100010011101010101101010010000000...

Second Run Input

Bob
11001001000111100101010011111010101100100000011000100101011111010000110000011110000101101100010110011011101000100110100111100100100010101100101000011111010101010111111011100100000101110001100011101101111010000010011000110111111000111111100111010010101100000010000000011101110111111111110110101000...

Second Run Output

111001000011011100111011100111111000001010010011110101101100000100000111011110011101111101010001100001100010000010000111011011001011100110101111110100010000100000111001100100011100111100010111000101100110001010001110101100001100011110100010100100000100001111000111001001100010111000110101111100011011...

Third Run Input

Clara
110100011010011001011111111000010001011100000101010101101011110111001000101101110111111010001100000100111000001100001111111100111111100001001011001000011111010101001100110101100101100010001001101110110100100101100100110001101000100100000011001110110110010000011100001100010011101010101101010010...

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: 1ms
memory: 3896kb

First Run Input

Alice
101100100000101100011101000111000101110010110111010110000100110001100001000100001101001101010010000010010010100110111011011000000100101001001000001100101100101011000110111110110000011110101111000010100010110010010001111110010011100100010100010101010001111111101101101110101100010011111010001001...

First Run Output

100000110111011010111101000110000100001001111101110000100111100010100111001001000011111101111001101100011000011100101111101011000000111101110011100110000100010101001001001101000001101101001000010100110000101010111000100010111000001000110101100111001001000101000111100010000101000111000111110100010011...

Second Run Input

Bob
01001000011110100000101010001001011110100010001111100110001111100100100011110111011111001111001101110011010110101001010001101000001111000010110100110010010111010110101000111001010001110011110001010111111100100001100101001001101010100101111010000000011010101011100001001011101110011100101101111011...

Second Run Output

011100110101000011001000011010011001010001000110111111110100011010100001101110110100100010110011111000101111100001101001011100111111001110010110101111010101011011010110000001101010010010000010110101101001101001110111111110100111010001101001001011111010000000110110010010010011011000101100011100001110...

Third Run Input

Clara
100000110111011010111101000110000100001001111101110000100111100010100111001001000011111101111001101100011000011100101111101011000000111101110011100110000100010101001001001101000001101101001000010100110000101010111000100010111000001000110101100111001001000101000111100010000101000111000111110100...

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: 1ms
memory: 3896kb

First Run Input

Alice
110010100010101100011110100111010000010011111001111110100000110100010111110101111110110011100000111010101010100011000111000001111000011100001101101011001001010100011011110001011010100100101110110011110100101100000111000100110011100110111000111110001100001111100001101101101011010111011110111010...

First Run Output

111000010110111011110110000001011010010000010101000011001000010010110001011001100110100010101011011001001000110100011110110101010111011100000001001101001101011011100010100001111110001010011101000110110000001111110111101011101010111110110110110111000111101000000000000110001110110000010001001010110001...

Second Run Input

Bob
00100100100011010000100011001110100111000000111011110101100010111010111001010100001010110110011100110011111001000010101110110101101101101000111000111011111100101100011100101100001111000100011101011101100110010110110001010100100011100111011011010001111110001001101011110011101110000001010100100010...

Second Run Output

000001111000001010001100111100000111100110000011011001000100011001000011000101010101110011000001101000011110001100100110111001100100101110011010011000100110000001110100100111100000000001100101100110010011001011100000110001010001101111010000111111011111000101011110011000100110001110000011011011011101...

Third Run Input

Clara
111000010110111011110110000001011010010000010101000011001000010010110001011001100110100010101011011001001000110100011110110101010111011100000001001101001101011011100010100001111110001010011101000110110000001111110111101011101010111110110110110111000111101000000000000110001110110000010001001010...

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: 1ms
memory: 3696kb

First Run Input

Alice
011110111001011101110110010110101000111000011000100111101111101010101101000011010001111010000011111111001011100100110000100111111111000000010101010000001110100111001011010011111001011011111101100010110100110000010011101111000100001100110001101101111101111000011010011001000000100000111011100011...

First Run Output

011001101010011100000111001010101110001010100110101111000100101011000110100100000001001111101100010111111101100101110010110010010011101011011001010111110110101010000100000011010010101110111111011100110000101111110011000010101001011010111001000011100010111001011000010110111111101000011111011111111001...

Second Run Input

Bob
01010110000100000101110110000110100101111100001100001110111110001100110111000000101110000001011101110111100001001111000110110000110010101111000110110001000011111001110011111110101000010011110010000000000010110111011010000001101111011001000011101100111010010000110001000011000100101011110111000010...

Second Run Output

010000001000110001010011111011100100010111010100001010000010111110011001111000011010011110100010100011110010111110000100110111100011100001110101001101100100101110001000111101111110111101110010010001001010101111110001011000000111110010011010111000001001011101110010011011011100111011100101011000101110...

Third Run Input

Clara
011001101010011100000111001010101110001010100110101111000100101011000110100100000001001111101100010111111101100101110010110010010011101011011001010111110110101010000100000011010010101110111111011100110000101111110011000010101001011010111001000011100010111001011000010110111111101000011111011111...

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: 1ms
memory: 3660kb

First Run Input

Alice
101001110111011000100000101001110001000011110001000111011000101111011010100010011010011100111011111100110001100010111001111111011011100111101110110111110011101100110000000110111111000011101101010001000110111100010111001000110000000100101110010111100111001011010101010111010001101101010101011110...

First Run Output

100100001001100011000011110101011001101010000010110011011100110001101010011010001110110001010100011000101000010110001001011101011110111111000000000110110011110000000110001000010100101101101010000110100100101101101000011111100010100001000000100001010000000101000000101001111111110000000100111011100110...

Second Run Input

Bob
11101010111110001101001001000101001000100000111110101010011001100111100010001011110010100101111001101110111110101000111001101101011111101010000110011011000001001010111101101001010100100001001111011100001011000011000100000100100000110000000110110101111101110111101010110101100111110001110110010101...

Second Run Output

111111000111111000110111100000001011110011101000000110101010011001111011010100100000011011111100011110101111111101010100001111011010110110001000101110011001100101110001010110110001011100001000100010011111001000000111010110011111110010010011101000101110010000001100001011110110111100000101001011110010...

Third Run Input

Clara
100100001001100011000011110101011001101010000010110011011100110001101010011010001110110001010100011000101000010110001001011101011110111111000000000110110011110000000110001000010100101101101010000110100100101101101000011111100010100001000000100001010000000101000000101001111111110000000100111011...

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: 1ms
memory: 3868kb

First Run Input

Alice
000011100110011100011011111011011010001010101101101011100110010001111001000001110010000011000010010011010101111111110000101111101000110001100110101100001000010110100000010000001110110011100001101110100001100111001011011000101101010111100111111110010011100110111010001100000011001000001100011111...

First Run Output

001101000010111111010101100100100000011110011010111111011100100111110010111010111011001010110011010001001011110110101010011101011000111001101011001100101001100100011011010111101110001000101110000100010010100001111100101110010101001001011010001000010000001111111101010000001001010001010001000000110001...

Second Run Input

Bob
10101110000110001000100001010000011100010011001111011011110001011100001101000111111100010111001111001011010011110111111011011101000001100010000100011000111011101100111000010000011110010001010100100011010010010101101011100111110100100010110101001110011100101000111011100100010000011110100000011111...

Second Run Output

101011011111000110111110100101010001110110000100011101100001101111100111001101000111010001111100101010101100011110001010011101110010100010010111000000010000001101011100111100010000011110010111110000111111100111010000010110010011111011010011110001010101110110001111101111110101010110001000111101100010...

Third Run Input

Clara
001101000010111111010101100100100000011110011010111111011100100111110010111010111011001010110011010001001011110110101010011101011000111001101011001100101001100100011011010111101110001000101110000100010010100001111100101110010101001001011010001000010000001111111101010000001001010001010001000000...

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: 1ms
memory: 3888kb

First Run Input

Alice
011001110000000001001101100010011000110111001110110011101011111010110001011011100011000001111010010000100001010011011010100010100011100110010110111010111010111000000100011110000000000110111010011000010111000101111101110111011011010011110011001001110011101000011010010101010011011100100111001111...

First Run Output

010000111000110000101001010110000101000010001010000101011100010101111001100001000010100011000100010111001100101000001101111111011101101101001000110110111111100001011010010110001011100100000110111011010000111100110100001110110100010110100101111101111100010100100100111000010010111010010111100001011100...

Second Run Input

Bob
11010100111000100011100001111101011000001101101101000101100110000101111111001010010100100110100110100111100100000101010101101010010100101110001100100010010110010011011010010000010101011010001001000001100100100110000111000000100011101110111001110011100111111001110001111110010001100000101111111110...

Second Run Output

110101010101000011101001101100101111000001010001010101101010100100101010110111110111000101111001010101111111110111010110000011001100000001111000111000101100010010111000101111100110101100111111101010101011111100000010100101000111001001010111111000100100110101001000110110001010011000101101111100110101...

Third Run Input

Clara
010000111000110000101001010110000101000010001010000101011100010101111001100001000010100011000100010111001100101000001101111111011101101101001000110110111111100001011010010110001011100100000110111011010000111100110100001110110100010110100101111101111100010100100100111000010010111010010111100001...

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: 1ms
memory: 3900kb

First Run Input

Alice
100010010001011001101001111100100111000111010110100100110111100001101101000101000010111000001010000100011110111011101110010110101101100011010111110000000011011110011000100100111100100110000110011101000101010111000110101101100010100010011100011111001101100001010011011010001101011000111001001010...

First Run Output

101001000001100000010110111010110011101000111010001010111000101000010100011011100101100011010100110011011110001100110100101111110100010111001001100010100000110010010100010000010011110011011101011101100000011101010010000100100110000000101101110110110001110100100110010010100110001111001000110100111010...

Second Run Input

Bob
01110010000000100101011001010010010010001001000100011010000100011100000110100101110101111101110010010100100011010100110010000100100001101100000011101010101110000001110001001011000000101000100111011000000011001000010000101001101101110101100010111110111101011110001010111100101001111111001000000110...

Second Run Output

010001101100111010011000110001100111111011110001011010010000010011101111101011111010101010011100110010011110001100010010110011101000000111010100010001110000010101001111001101101011100110111110111010001010000101000010100011000010110111110111001001011101010010100001110000100100110110100010100101110011...

Third Run Input

Clara
101001000001100000010110111010110011101000111010001010111000101000010100011011100101100011010100110011011110001100110100101111110100010111001001100010100000110010010100010000010011110011011101011101100000011101010010000100100110000000101101110110110001110100100110010010100110001111001000110100...

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: 1ms
memory: 3860kb

First Run Input

Alice
110010011110001110000001101111100111110001101011011000100001110000101011011111100010001111001000111110010111100001100101100001011100111001101101111110110101001001011011100110100010101101101001001001101110100010101001001011010101010111000100011110000101000101101101101010101011000001011111110000...

First Run Output

111110110010100101111001011001100000101011100000011000100011111001100110101110000001011011111010110100001011000010010101001000001111010110001001110011010000010111111011111001010001000010000010001100001101101100011100110000111010011110111010010000111011001010111001111100101011010111101111000000001111...

Second Run Input

Bob
11110001110001100011001100000001100111110001011111111001111011101010011110010000001000010111111111110111010011011111111010110100101110101011011110011000100011110010001000011101011101101000011110111101100101101100011101010100010001010001100010010001100101111100000101000101011100001111101111100101...

Second Run Output

110100111000101111101110010100111101100001100101100001111110011110000100101111000110011011000000100011000010100001011101001011111001111111111010011110010110001110101110100000000110100100111100001111001010101110101110110101111011001001001010100111011100101100010010001111010100100110110111010011100100...

Third Run Input

Clara
111110110010100101111001011001100000101011100000011000100011111001100110101110000001011011111010110100001011000010010101001000001111010110001001110011010000010111111011111001010001000010000010001100001101101100011100110000111010011110111010010000111011001010111001111100101011010111101111000000...

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: 3896kb

First Run Input

Alice
101111100101001000111010001001110111110100110011110010111110110110000000100100101011011010011000011111101111111110010000100000010000100001001011111101010101011101100101100000001000101101111011110100111000000100101110101111101000001010001001000011001011100000101010000101101100101110110000011001...

First Run Output

101100111010100001111010010100101011001111111101110100100111111011101100001001011110111011010001101100011110111001001111110100001011110001000100111001010010001001011000001001111110001100101110000101011101111100110111011110000110100101011000101010001111000111011010100011111111100010000001110110101110...

Second Run Input

Bob
10111101111110000111000001110111100001100100011111101111000011111000000010011101111110001100000011001100010011001001011001111110000001100001010101000001100010111111100001011101111010101000111001000000111110111111000010100100111111110010110100010001101111011110111001111011010001000010010111000100...

Second Run Output

101101011111010111010111110001110001111100110111101111101110011011111110111100001001100011001101000000100101101001111000011010000101111111010101101101111010001000000011110100010010010000110111000111011010001001101111101000010100011111100000111011100111110010100100010011101010000000001000010010110110...

Third Run Input

Clara
101100111010100001111010010100101011001111111101110100100111111011101100001001011110111011010001101100011110111001001111110100001011110001000100111001010010001001011000001001111110001100101110000101011101111100110111011110000110100101011000101010001111000111011010100011111111100010000001110110...

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: 1ms
memory: 3732kb

First Run Input

Alice
101100110111101110010100110101111111111100001100100001000101010010001110110111101110100000010010010011111010001111110000100101101110000001111010111000110001110110000000001011001000011100100101100110111111001010101100111110101111010010010110101101100101000110000000100110000100111011001001001000...

First Run Output

100111101110101110110110010001110110010100110001000100111011010111110011001001011001100101110011000001100011001101000000100110000011001100100111011101110011011110100100010100110100001101100000011010001001001010111010000100110000001101100010101101110010100010111111111010000000000001100001111011001101...

Second Run Input

Bob
01010010111010001110000001101111010101100001001000100110011100000001011101100011100110111100110001100100001011001011001111000010011011110110000011111011101110001110000011001000010101101100000011100011111100111011111000010110011100100011110111111100101000010101010000011110101110100110111100000010...

Second Run Output

010111000001110100100110001011101111001110000101100100001111111001000011000000000111011001101111111111010000100001111011001011100011010111001111010010001011110101000001001110001011010011001101111101110100010110110111101001000111010110010101000101101000100111111110111011100010010001101101011100100100...

Third Run Input

Clara
100111101110101110110110010001110110010100110001000100111011010111110011001001011001100101110011000001100011001101000000100110000011001100100111011101110011011110100100010100110100001101100000011010001001001010111010000100110000001101100010101101110010100010111111111010000000000001100001111011...

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: 3896kb

First Run Input

Alice
100010001101000001101000000101001000000010011110011001100001101100101101100011111101111111010101010100110101011111000011010000001001000100010001001001000110000101110111000000111010001111101111011010111000111001001100001100110000011000001011111001001000110111001000010001100001111010001100111100...

First Run Output

101100010101001011010011001100001000100110101110011101111111101111011100101100100111001110011001011101110101010101111000011101100111111101000101110101011000101100100010001111101100100111010011100000111111111100011100001101011111000001010100001000111111011000011010100100011010110110010000101010000100...

Second Run Input

Bob
10110111100100101010010101011111110111000100111110101000010000110000101100101010010001101111000000100110001101111001000111000111101000011000011011100000101111001111111101010000101010011010011010001001111110011110010110010010110010100100111101101101001100000000100111001111001111101101110101100101...

Second Run Output

100011100101111101110000010010001000110100111101001111001111001000111100100011100001101011000010100111100111000010001110000010001010000000100111111111000001100101110100011011101111010111111110100101001100110111000010010101100110011011110111110010001011001101100001110011011110111010011110000001010100...

Third Run Input

Clara
101100010101001011010011001100001000100110101110011101111111101111011100101100100111001110011001011101110101010101111000011101100111111101000101110101011000101100100010001111101100100111010011100000111111111100011100001101011111000001010100001000111111011000011010100100011010110110010000101010...

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: 1ms
memory: 3732kb

First Run Input

Alice
011101111011010000110101011001001111110001011011001001000001100111010100000001010100001001001011100110010001011001001101001010011110100101101010101100001101111000110101000111010100010011001000110010011011000110001110101110100111100000110101000111111001110111011110101000110001110100101010011110...

First Run Output

010001101110101111101010000011100111000011110100101000000100010111101001000011010111111100011100011110011100101000100010101011111001101101100101001000101010100000101110001111111010000000101110000001001000101001111110011011011010011100010011101100110001111001000011001101000110101000001011001001001001...

Second Run Input

Bob
00110000010000111010010011111110011011110010100110101110100011011111001010011001000011100101100100001000110011010111011100011000001110010111010111110010100100101010001111000101110100101010100001101001111110010111100010110001011111101100011100000001011011111000101111010011000101101101011001101101...

Second Run Output

000111101010111111011101011000100110100010101000100001011001100001101000110001011011000011000110000001011001111100101001111111010011110110010110101010000001110101000000101001101101000011111010111011000001001111010001000111110111101001101110110000110111111111110110100100100110000011110011100011100101...

Third Run Input

Clara
010001101110101111101010000011100111000011110100101000000100010111101001000011010111111100011100011110011100101000100010101011111001101101100101001000101010100000101110001111111010000000101110000001001000101001111110011011011010011100010011101100110001111001000011001101000110101000001011001001...

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: 3896kb

First Run Input

Alice
111111110010101111000000111110010000011011100011011010011110001000100011010000111000000110001110011110111010001011110000101000110100010000111000011011011101100100000100110001011001000101101010101011011000010100110101100001110111011101101001011001010010001010100100000011010001110010010011011100...

First Run Output

111011010010011111111101011011000010000111100000001001111011010101011101101100010111101111101010111100000011100001100010111000111101101110101110101111100001111001000101010111001001101011000100100100110100011011001010111100000000100101100001110000101101011010010000101101010110001101010110011010111100...

Second Run Input

Bob
00110100010101010101111110111100011010110111000000101011111111101110000010010000111111010011110111111011110101011101011000101010011100000101010000001110000011011110101111100010101000100000001011010001010000011000010001111100000101011110100101101100100000110101100110010101100111100111010101101100...

Second Run Output

000100101110010001111011010110001110101111111101011011010010000111101000011111111010000111000001010010100011100001100101110001110101000010100010110110111000000111001100010010111110111001001000110111011101100111011001000000010001000100000001111111100001110010101000000011001111101011100000101101111101...

Third Run Input

Clara
111011010010011111111101011011000010000111100000001001111011010101011101101100010111101111101010111100000011100001100010111000111101101110101110101111100001111001000101010111001001101011000100100100110100011011001010111100000000100101100001110000101101011010010000101101010110001101010110011010...

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: 1ms
memory: 3668kb

First Run Input

Alice
101100110100010110011000100110010110000001001001101100110010101110100100011000111111110100111010010001111101010010001111011110010000101100011010100010110111000000010011010011110101111001000000000111011110110001000110111110101111010101111001011110101000001110000010110111001001000000011111001110...

First Run Output

100110001101111110011011111110011101101011010001000001100101011111100110000111111011110111111101100010101000010001010001101100011010011100010000100101011100100101110011000101001010100111101010101010100111000011111000011000000010001000011001111000011110000101001101001011110010110011111001111010000101...

Second Run Input

Bob
11110100000000001110111011011110001001001111100110011011110101110010000101011100110100010010011001010111110011100110000001011010110011110110010101000001010011110111100001011001010110110000000100101010110010100101101000010011101111000110011011011010111011110010001101111010111000101011111010000000...

Second Run Output

110011000101011000000101010101000010111111110100100001110110111111101011011100000010010010101110000101101001001010110001100001100111010000010111100100000011110111101010101011001111100010001000101000000011100011001011110100100000101000000010010101111101001110000101110011110100101011001011100000011000...

Third Run Input

Clara
100110001101111110011011111110011101101011010001000001100101011111100110000111111011110111111101100010101000010001010001101100011010011100010000100101011100100101110011000101001010100111101010101010100111000011111000011000000010001000011001111000011110000101001101001011110010110011111001111010...

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: 1ms
memory: 3864kb

First Run Input

Alice
100100110100111100110111011111110101110000011111011001111110100100101000001110100011110010110111001100101101111000111010001011100001110011001001010001010000111011001010010000011111100100001001111001010110000111111100011001111110000000110100000111010011101000110100010010110101011110010010100101...

First Run Output

100101110000010100110000001010111111001111110000011010100010101011011111101111100000001010000100000001001100100101000000000010000010000100111000000010011001100001000010011011111011111001110011000000110001010111010111100000000110110101111010010001011100000010101000000101101010001100111001101010110110...

Second Run Input

Bob
00101101111010101000001110110110010100010100010010000000110100101001011110001110001001110001001111100101111011111001100000101100000001001001001000001111000000010100101110010000101100101110100000001100101111100110100010111110010111010101100011000100101000101110101000111001111100110001010001111100...

Second Run Output

001110001000001111101110110101111100010110011010101111110010100010111000011100111001010111000111101001111111010101100000001010100101111101011100100001011000000101001011010001101101010101110010111000111100101100001100000111011001100110100010100010010101111001011100010111001011000000111101111110000001...

Third Run Input

Clara
100101110000010100110000001010111111001111110000011010100010101011011111101111100000001010000100000001001100100101000000000010000010000100111000000010011001100001000010011011111011111001110011000000110001010111010111100000000110110101111010010001011100000010101000000101101010001100111001101010...

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: 100
Accepted
time: 1ms
memory: 3728kb

First Run Input

Alice
100100001010100101000110100000011011011001000010101001001010100010101110100110000001101111001101000101101011001000011101101111001101011110010101000110110001111010110000001001111011101110110011000011101001110110011010001000001010100011000111100101010001001011101111011101000111101110101100011001...

First Run Output

100000001000001011000001100011100111110010100100111010100010101111000001010110000100100010000000111100000101111011010011111010001110110100110001100111101110110101000110000010001110110101001010011111000100011001100101101001111111011111101111001110100010110110110111000100000001101000010010111001010111...

Second Run Input

Bob
10101010010001111011110101001101001111000011100010001100101101001001101100001101100110111010001000100001010011000011110100100010001110111101100101111111111100010101111111111000011011011000111101010001110010010011110111100101101000010011000101101111110000011111000101001000011110101111111101111111...

Second Run Output

101111101000010011000101111100001010001111110101010011101111010010011100011110101101101110110010010000101110010100101001100001100111100001101010010001100010110110101000101001101101110101011101010000001101101011111000100100011111010000010010101111001010100000010100101100110101111011101010110101010110...

Third Run Input

Clara
100000001000001011000001100011100111110010100100111010100010101111000001010110000100100010000000111100000101111011010011111010001110110100110001100111101110110101000110000010001110110101001010011111000100011001100101101001111111011111101111001110100010110110110111000100000001101000010010111001...

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
79 45
80 10
57 7
66 78
98 43
3...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #55:

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

First Run Input

Alice
111000011100111110101000111101101000101101100101010101010100000100101110101000001101100011001100001011011001100001101111010100101011011011000011100110011001111111000110111110001100011001010000001000110110000011110101101101101101011001100011110010111011001101010011001001111000001011111111111010...

First Run Output

110111110111110101100011011011011001011001110000111111000101011000010001100101110011101001100110101011101000100100100011110101000011101100110100011001011111000001100110111001010111010111010101000101001111110000101011110111110111100111000000100100111010111011101011000001100101000011011100111011100100...

Second Run Input

Bob
11010000001010101111000101001110110001101010011000011110101000110110111001111111101101011011101000111110101101001001011000110100110001101101101001101011100001101111101100001000001000101110011110101001100011011111101110010101100010001011110010111010110110110110111010011010110011001000111010100111...

Second Run Output

110011000010001000110011000001101001111101101110110100101001010010011010110000000110110000111100101101111100010101001011100101101101000001111011101111110100011011010010101111000001111001101111110010000110001011100010011111011011011011110110100111100001001000010111100010100101110100011111000011100010...

Third Run Input

Clara
110111110111110101100011011011011001011001110000111111000101011000010001100101110011101001100110101011101000100100100011110101000011101100110100011001011111000001100110111001010111010111010101000101001111110000101011110111110111100111000000100100111010111011101011000001100101000011011100111011...

Third Run Output

82 97
87 76
47 47
99 72
77 93
78 91
46 69
7 21
15 13
88 80
94 58
22 96
12 46
13 68
9 69
13 51
28 21
79 52
100 97
40 30
57 41
92 66
62 85
75 42
33 57
64 49
44 8
93 94
50 75
96 49
17 46
72 47
83 89
29 52
19 42
47 19
6 82
50 51
96 93
75 34
89 16
39 11
67 75
32 53
49 63
58 33
67 39
16 24
64 52
53 74
3 2...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #56:

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

First Run Input

Alice
101010011001010110110010111111111111111010100111000011111110001010000011111011100000001011000101001101010001001101110011000000000000101011101110001101110101010010110001110011111010101000111000011000000100011010111010111011011111111010110011011000011000010110010010101111100101100000010001111011...

First Run Output

101011101000010111111111000110111000110010001110001111100001111010011100010000000101111101011101010001111110000111101010010110111010100001011010100111011111010010001010010001100011010001101001110000111000001001001110100001110111000010100101100010000101011011001001000101010101111100110010011010100000...

Second Run Input

Bob
10011101101000111101001010000110001010100100101100100011011100011000101000111011100100111011100110001101100100100011000111001101010111111111001110010011000111001011010000111101110100001010101001100111100001010000110001010110001110100010011000001011100101110011111110000010000100011000011110011110...

Second Run Output

101010101011100000111111100000101110000000000010000100100110100011111001011100010110110000001001101001100111101010100010100010101010001001001001000011101010111101000100110110011111101010110111101101101001101001100000100000111111100101011010010010101101011111100110001010010001100011110010111100100010...

Third Run Input

Clara
101011101000010111111111000110111000110010001110001111100001111010011100010000000101111101011101010001111110000111101010010110111010100001011010100111011111010010001010010001100011010001101001110000111000001001001110100001110111000010100101100010000101011011001001000101010101111100110010011010...

Third Run Output

92 28
55 1
13 68
95 20
56 73
87 1
32 92
9 37
5 53
96 88
9 60
85 12
91 98
46 25
73 44
23 28
57 4
35 38
21 26
69 50
7 9
85 63
59 1
47 86
72 37
2 28
20 31
24 40
4 97
36 38
31 53
19 55
67 40
59 82
39 30
38 92
60 77
98 1
40 34
48 87
55 30
33 46
47 10
10 47
78 56
10 54
32 70
24 47
9 76
16 68
50 73
10 71
6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #57:

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

First Run Input

Alice
100011111111110001111000101101001111001000000101100000100010111000101000111011000110110010100010000101011001011000100010111101011001000111111101011000011000110111010111011100001111010011011101011100001101001111111110101101000000111000100001011111110111000111000011100000101000000100111011000101...

First Run Output

101100000101010010110011101000000100010000110011001000100111000111010100110100011010001101101110010011100100001101000011010000010111111111010001111010000101000011010101111010001110000100100101100000000010101010000001000101010001101001111111100100000000011001110000011000110101000000110101111101111010...

Second Run Input

Bob
01001100110100101001100111110100110000100000000110101110101011100101011111010010110010111111111110001010000111111000111001001101101110010000000110000001110010000100111010111100010010000011010110101000110011111010010010100000110001111010001100010010100100001111101101110010010111011011001101001110...

Second Run Output

011111000111101111010011100000111011010110001110100100000001011011101100011001110011011000101010101110111010000001011010110011010110111111100100100110110010010100101100100100101010011100100101001110010101110010100011101000100110110111000001011100100111000101010101010100001100011001001100011110110011...

Third Run Input

Clara
101100000101010010110011101000000100010000110011001000100111000111010100110100011010001101101110010011100100001101000011010000010111111111010001111010000101000011010101111010001110000100100101100000000010101010000001000101010001101001111111100100000000011001110000011000110101000000110101111101...

Third Run Output

49 36
39 11
22 36
75 24
65 78
48 92
69 1
100 33
47 84
49 46
73 10
33 52
68 87
65 80
38 64
40 15
50 66
30 78
32 87
22 82
20 10
69 45
79 53
73 76
30 81
37 33
66 43
6 81
38 5
50 60
36 24
24 53
14 71
73 56
91 38
71 65
82 9
44 91
20 25
25 99
43 23
86 83
74 34
93 43
41 72
11 75
76 11
85 79
41 11
22 33
51 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #58:

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

First Run Input

Alice
101001000000010111111000000110011001110011011011101000111100000001100110101011011111101111000101110010010111011111111111101001101101111010110101011101100110100110100100100010001101001011010000011100010001011011110000001000010001001001000000101100110010010100110111110111111011101101010111011011...

First Run Output

100010100110000001100101100010000111000110100000111101110001011110111010000101010100100111101010000010010000011000000000101011100101010110000111101100110101101011110000101101100111000001110011010101010001000011010100001101001011100010010010100111000010111111011000001000001001000001100101001101100010...

Second Run Input

Bob
00010010001001000101000101100110100000011010001101010001010110100110000001010001101010101111110111100000000110011111110010011011011011110011010000010000111010001100100100000110000010000110001010101000011001000111010010010101111001110111011101100010100111011110110011000010010111010100010101000101...

Second Run Output

000001010000001111000110011101100001001000010001100010110010100110101110001010110100001100001000001000000011000011001000111011001001011010010111110110110001101111010101001110000000101110001000000010111110010110100000111001101110100010111001111111000001010011100011110111110111001100000111000100101010...

Third Run Input

Clara
100010100110000001100101100010000111000110100000111101110001011110111010000101010100100111101010000010010000011000000000101011100101010110000111101100110101101011110000101101100111000001110011010101010001000011010100001101001011100010010010100111000010111111011000001000001001000001100101001101...

Third Run Output

78 16
52 36
23 12
52 7
61 15
26 77
92 26
46 22
20 55
68 4
14 74
8 33
64 31
6 89
3 76
76 2
35 82
28 69
21 26
29 15
40 38
57 72
99 31
94 61
78 50
26 48
34 4
11 3
86 86
64 62
64 89
71 15
7 100
2 79
59 54
45 82
28 51
72 18
61 18
73 78
67 33
91 33
2 17
73 12
93 6
93 49
93 19
13 67
76 36
82 42
39 47
43 21...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #59:

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

First Run Input

Alice
010101000001001100111011111110000000100010111001100010001101001101001100000000110000001101001001001010011000010111111111111110000100010100100010011100011100010010111101100000011100001100111000010110101000001101000000011100010101000101011110100001000011111110101000100101001011111000111100100110...

First Run Output

010001100011001110100111000110000100001110111100001010000000110011000101011000111110101100110000010110011011000100110001110110101001000110110100011000011001101000110000000011000000001011011000101000011000110101000011011000101100100111111010100011000111001110010110111101011101100100001000000111011100...

Second Run Input

Bob
00100101001011000000010110100111100001111001110101010010000000010100001001010101101011000100001110110100111101011000101011100110100010000111011110110100111011100011111001010111001010000011101010001101111101011111100110010100011010000010000010001101100011000111000001011010010000011101100111110100...

Second Run Output

000000010001111101101011010011010100001001101111000011011100001001001110100100100110000011110000000010001000000110010011111101111110110001010111110011011001011001011101100111010101001100101101111000001000100100101101011111000100000010110011000111110001110110100100000010001101100110111110111001000111...

Third Run Input

Clara
010001100011001110100111000110000100001110111100001010000000110011000101011000111110101100110000010110011011000100110001110110101001000110110100011000011001101000110000000011000000001011011000101000011000110101000011011000101100100111111010100011000111001110010110111101011101100100001000000111...

Third Run Output

14 8
99 71
66 60
50 25
19 80
34 99
19 48
86 5
9 84
12 89
23 3
5 3
39 84
49 64
8 84
95 17
80 81
15 44
95 1
10 94
33 64
10 85
64 5
41 53
98 68
72 86
25 68
84 46
33 13
94 44
28 51
13 27
100 50
62 77
78 92
50 47
47 52
1 42
66 55
39 76
88 39
74 20
14 64
47 17
68 63
73 54
22 82
83 82
61 36
46 81
94 14
68 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #60:

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

First Run Input

Alice
010001011011111000010100111000110000111101000000110001100001110101101000111110101010011011110110010000011110011011101110100101101001110100010111001011101011010110000111101101101001110010001000111000010100100010110101101100110110001101001100101001101110111100010011110110100111111100000010011010...

First Run Output

010001110000000101111001011101000010101101011011110011111111110010100010101110011011011111001001110010010110101101111001110110010010110100100100011111110100101110101110111100101010001000100110110000111110101110010011011100001010010010000111110111111001101000111000111111001000111010110111010100010001...

Second Run Input

Bob
00100011001000110011010111011100110011010100010010011000110011100110010110001111110000110100000101100111100010111000001111011000010011011100001100011111001000000111001011001100010110011100110100000011100111011100100101111100000100100101101000000001100101000111100000110000100111000011011110111110...

Second Run Output

000001100101010000110110000110111001100001000100000010000101110000011110000100010001110011110011010000100001000001100100110001011101000011101111100001001110101011111000111010011011110110000110111101111000010100010110011000000010101001111111111010010100010011010010000111011100100101100110000000101000...

Third Run Input

Clara
010001110000000101111001011101000010101101011011110011111111110010100010101110011011011111001001110010010110101101111001110110010010110100100100011111110100101110101110111100101010001000100110110000111110101110010011011100001010010010000111110111111001101000111000111111001000111010110111010100...

Third Run Output

10 13
29 80
45 22
77 95
99 36
91 47
35 10
60 23
28 4
10 75
90 97
39 91
65 10
17 82
90 32
46 62
53 24
11 41
39 74
11 37
58 63
7 3
92 89
2 37
60 59
32 11
73 35
39 96
33 81
28 9
28 85
38 78
55 10
11 64
100 10
55 99
50 95
57 47
43 91
11 2
38 92
16 74
25 91
100 41
7 40
33 15
9 72
57 14
23 91
81 9
34 70
8...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #61:

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

First Run Input

Alice
010000001111010011111101100111001000100001000101001001110011100111100011010111010110000110000101000100100011101011100010010011000000100100000011111111101010110010010110111100000011111001001000001111101100111100010000001010010111000100100100100000010011110010110111100111111001110100001011111001...

First Run Output

010110101101111111000000111011110110101001010110101100101010110000000000101000000011111011100101010110010100100101001101110111110101000110001111111000100100100110110111000101111101100000101111010100000100110010100111110000100101001100100110100101111100111100001101101101110111001100011011101000100010...

Second Run Input

Bob
01100100111111001011110101100011111001001011001010111111111011101100101100101010011011001100111001001101010000101010010011011110100001001101101101001000001100111110001111111000100011010100111010111000000110001001101001101010110001110101011111110111100011101001000111111000000110111010111111011111...

Second Run Output

010111001111011111110010001110001101010001111010111000001110011001110010100110011110000110100101101100111010100010101101110011101000011110000000111001000111010100110001000010000001001001100100101100101001011101110100100110001111111001100111111001111100011110001010001001101001111000101101100010101010...

Third Run Input

Clara
010110101101111111000000111011110110101001010110101100101010110000000000101000000011111011100101010110010100100101001101110111110101000110001111111000100100100110110111000101111101100000101111010100000100110010100111110000100101001100100110100101111100111100001101101101110111001100011011101000...

Third Run Output

10 76
2 49
37 23
19 41
24 25
32 11
80 65
74 49
59 42
34 58
62 51
50 70
82 62
87 9
71 95
11 42
78 35
86 62
53 45
5 88
24 68
90 61
16 39
34 80
84 5
39 45
42 43
77 69
99 51
25 33
63 45
23 14
49 84
31 20
48 96
76 99
39 25
30 8
88 70
48 66
47 36
83 57
34 24
57 11
82 48
28 11
12 44
68 18
78 17
53 91
18 97...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #62:

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

First Run Input

Alice
000001000001110110110110110110010011011010010001010000011011110111010000110011010101000010000111010000011111011010100010000011011000110111000010001101110100000010001110000001011001101111101110000011001111101100001001111101101111101111110101000101011001111001011000011101100010101111000110000000...

First Run Output

000011011100001100111110100001011110100000001110000111100111110101111110100111001111110001011111000001000101000110100011001110010111001010111001110001111110010110111011001111101101101010110100001001000000001000000100001010101010100101100111011111111010110110000001100000010100111110000111001100010101...

Second Run Input

Bob
10010001110010010001011000011101111000011111100110111001110111101100001100110100111001110111010101000110010001001010010111100100101111010101010010000100011000110111110110000110001011000010100101100011000010011010110101000111111010010101101010000010101011100101010000000010110100011000110000001000...

Second Run Output

100100001101100100001111001010111101001010011001100101111010000010101110101101101110111101110001000110010111011000110000010111110010100101101110111001111111101010010111110001100110100101000110010011011011011101111110011110000010101101011000110110101010110001011100001101110011011100110011110011101001...

Third Run Input

Clara
000011011100001100111110100001011110100000001110000111100111110101111110100111001111110001011111000001000101000110100011001110010111001010111001110001111110010110111011001111101101101010110100001001000000001000000100001010101010100101100111011111111010110110000001100000010100111110000111001100...

Third Run Output

62 8
85 97
84 93
42 35
7 78
91 50
15 69
19 79
61 51
95 24
82 52
54 77
26 98
45 89
79 35
57 41
57 68
42 77
100 54
91 23
74 46
85 27
100 32
44 82
56 99
59 30
78 87
16 89
66 70
74 50
40 62
15 61
83 88
54 100
65 50
25 96
52 51
13 51
79 23
79 85
58 47
45 97
92 41
19 49
1 27
22 80
75 66
73 97
62 57
27 99
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #63:

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

First Run Input

Alice
100001000011110001011110000101001011011010000111010100110010000011100010111000110101011000111001001011010100011101001011111001101011001001100111000111101001010100110001001011111100110111101001000101000110100011101101000110001101001001011001000001111100111000101011011010110011010010100000111001...

First Run Output

100000011111000101000001001011110000001011001100011100101100111101011110010001111011110100110111010001100001110110110111110000110000001011100001011110000000000010011001010000111001010000111100101111110100010010011100000000101101001011111110010111011111001001001001100000110110010010001001101011001101...

Second Run Input

Bob
01101111100010110100000100101101111100101100101011111011110101000101000100001110100110110000010101001100001101010100111100100111010001110101111101100000000101011000000001110100100010101010000000011001100010100011110011110110001010101101011001111111110010011011100110010011111110010001110110000100...

Second Run Output

011000010010011010011101000110001011111110011010110001011110100111001101101101101101001111110100011101000101101110111000100011111101010000000010001011111011010110101011010011101000010001001001100111101101111010011100110100100100010001110001010001100010001111101111110011110010011110010001001110011101...

Third Run Input

Clara
100000011111000101000001001011110000001011001100011100101100111101011110010001111011110100110111010001100001110110110111110000110000001011100001011110000000000010011001010000111001010000111100101111110100010010011100000000101101001011111110010111011111001001001001100000110110010010001001101011...

Third Run Output

37 93
28 67
53 1
12 32
23 94
24 68
4 20
53 11
81 15
53 50
76 17
98 31
67 13
60 36
79 93
61 84
43 74
85 8
78 62
41 41
33 86
19 58
41 34
98 67
89 96
18 4
31 11
29 100
25 22
40 78
40 70
74 58
96 57
45 20
22 10
68 62
86 41
90 92
66 86
42 5
27 11
36 17
8 6
30 23
34 54
42 33
64 65
79 39
82 72
89 6
60 61
7...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #64:

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

First Run Input

Alice
100110001101110101000000111001100100000111010111000010001110001100111001001111011110000000111011101011011000101101000000000110000001101000000010111111001000100010000101000011101011000110001011010011010010011010100010011110100000111000011111100011110010000110101101100001111100010010100111110101...

First Run Output

101101000110101011000101100101111000000010001011011101000010100111111110011010100010000101110011101001011000010011110110101110111100001000111100111011010010001110100111101100101110101100100101010011010001100111000010010011100100000010100110001001000101110101011101111110010000010001111101100011110111...

Second Run Input

Bob
10111011110100001111011000110000110100111111010010111000000000110000111110100111011011011001001100101010100000100111001000010010011001101101010010101000000011110101110111110111110100101001001011101110010010100101011001100111000101001101011011111010000100110101010111110000111001110010100101100001...

Second Run Output

101110000110111001011111000001100111101010011010010111110110001001100011100100000111010100001111000010110010001111000010011100011000001111001110000110110110111100000110110101010011001110001101000101101011111110110011011101010110110101110011101010110011000000010010001111001111110110110010011010011110...

Third Run Input

Clara
101101000110101011000101100101111000000010001011011101000010100111111110011010100010000101110011101001011000010011110110101110111100001000111100111011010010001110100111101100101110101100100101010011010001100111000010010011100100000010100110001001000101110101011101111110010000010001111101100011...

Third Run Output

80 4
39 6
56 20
78 75
74 10
77 87
62 31
70 56
46 10
82 47
71 85
69 62
47 31
64 78
58 29
15 75
80 84
19 38
38 58
30 98
82 64
78 21
2 79
52 36
75 44
6 93
93 49
39 63
38 78
52 85
27 66
41 59
79 100
28 78
82 18
26 4
8 36
48 28
29 58
92 88
98 11
39 81
80 83
99 17
44 1
8 37
51 51
84 18
10 86
2 72
65 61
81...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #65:

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

First Run Input

Alice
100011111000011011000010111100001111111011011111000111111001100001011010001001011000011001000110001010000111001101101110111011011010011001010010110110010100100000001011000010010010110011110001000100000001001100100000101111110011000011010101000001111000010000001111010100011101110111010011111011...

First Run Output

101011100011100001100010000011110010101011101110100100100111011001010000011110101111011110010110001101100011100000101010110100001100110000101100111110010000001000100101000010110010010100010101100011100101101001101001111011001100011011110000100111010001001001111100001010000011001011001000001111111101...

Second Run Input

Bob
11010101110110100110100101111000000000100010100011011000010110001110011101001110110000010001101100011011010010100100100001100000100110110101110101110110101111111000001011011101010100010101000010101001111100010001010110111100000111010001010100010000101100011110011110010001001011011000101100100000...

Second Run Output

110101011111011010101001011101110100111101101001001001010001110100000001011100010100010010000101010011000000110111010010000101101001000111001010011111111001110110001001010101111001100011101101101010011101110101101110100110001000111011111101010100100011011001001111000110010111111011010001001000000000...

Third Run Input

Clara
101011100011100001100010000011110010101011101110100100100111011001010000011110101111011110010110001101100011100000101010110100001100110000101100111110010000001000100101000010110010010100010101100011100101101001101001111011001100011011110000100111010001001001111100001010000011001011001000001111...

Third Run Output

32 19
3 57
77 72
81 8
81 91
11 29
21 1
52 24
5 82
90 75
49 26
79 59
30 69
18 15
30 32
68 89
52 1
53 75
67 53
78 40
53 31
23 21
17 53
39 66
86 26
26 100
74 56
36 13
58 74
7 67
37 95
34 62
50 24
90 65
38 3
6 53
12 64
100 41
57 14
43 19
77 59
93 88
7 70
24 5
72 2
59 73
44 55
60 84
42 55
65 19
26 82
11 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #66:

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

First Run Input

Alice
110101111001001100010000111111110110010100110010111100100111100011100111100000100001100010110011111000101011010010111011111111000010101011111100110011011011100001001101011111101101110000100110101011011100011000001000011000110101000001011010010100111101001000111101110110100010101011011110110000...

First Run Output

110001011001111101111101110001010011110011011110011110100110111101011100110010010010010011110110110111010100001011000110000011011111000011100101111000100011110000001010110100000110110011101111111000000000100111111100110010100110001011000011000010000110010100101100101010101001111111011001001010001000...

Second Run Input

Bob
01101010110110101100110110011111001001000100000101100011010111111111000100000010010010001100001110100111100011010011011010111111100110100011100011111010001000111101110100010110100010000111001010010110110001010101010100000010011011010001110011110000111000001110001110110111001111001000010101011100...

Second Run Output

011110011100100111111000101110000000010011011101101000000110000111010100000000000111100111010101101000000001111101110100011001100011011000110101001110110001001011100000000010110001011011110100111011100001000010111100101001001001010111000101110110100101001100111011001110010001110111101010011101110100...

Third Run Input

Clara
110001011001111101111101110001010011110011011110011110100110111101011100110010010010010011110110110111010100001011000110000011011111000011100101111000100011110000001010110100000110110011101111111000000000100111111100110010100110001011000011000010000110010100101100101010101001111111011001001010...

Third Run Output

14 61
9 16
76 69
59 23
78 66
36 77
52 74
66 12
71 25
82 76
67 84
92 34
49 23
87 31
100 9
40 2
10 49
32 2
12 92
1 2
25 76
18 46
17 57
60 89
55 93
27 56
84 14
96 6
11 54
6 48
41 75
17 21
5 62
1 73
81 22
62 9
17 79
37 1
26 37
45 50
95 31
59 1
20 83
56 63
99 49
92 22
77 84
51 17
92 33
3 60
6 60
55 68
85...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #67:

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

First Run Input

Alice
110000111000001111011111111100001110010010010100011111010011111101001101011111000101110110110111111001011110000000001011011111100011001111101011110011100111001100001001000100011101111110101100100110001110010001111101100111111001100111100001110000101010011000110111100100011001001101100001110101...

First Run Output

110011010101101001110010011110010000111110000111111101010100111001011001000010110101100100101000111010110010100110101000100100100011110001101010110111101101101100101111110001011011111001101100011011010000011111000110011111110111111010001000001010100110001000101100111101011001011111010011010101100011...

Second Run Input

Bob
11101000010100100011110110110000101110100101100100000011101000000111110110010101000101111100001000001001011010110010101011000010011110111001100100001110000001011110111111110010111111001001100100110001111001011100000000100100010111001110111000010110001110011110000001010111110100111000011110001100...

Second Run Output

111100100011010110011101101100000111010100100011001101111000000001000100100101111001000111111010111100000110010011110101000111010100010110111101110000000111011110101111010101011010110110101011101010010001101000010010111010101111111101000101110010010111000000110010100001110000111101100000000110011111...

Third Run Input

Clara
110011010101101001110010011110010000111110000111111101010100111001011001000010110101100100101000111010110010100110101000100100100011110001101010110111101101101100101111110001011011111001101100011011010000011111000110011111110111111010001000001010100110001000101100111101011001011111010011010101...

Third Run Output

11 34
86 33
62 86
93 7
96 16
46 90
68 48
30 98
79 32
98 70
33 72
66 64
6 34
27 19
62 50
3 7
11 98
58 78
30 53
9 62
76 33
42 76
26 45
60 17
96 77
13 78
85 31
79 100
78 61
41 54
46 93
39 40
97 20
70 95
75 57
49 21
22 13
26 23
5 78
6 55
30 27
81 94
40 31
30 56
87 51
26 10
100 55
74 68
12 36
90 85
70 6
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #68:

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

First Run Input

Alice
001101101100000000110100011110010110100010101101000100110101010111101001111110001110100100111101110001101000000010000000101100010100100101100010100111101010100001101111000011001011101101100110010001011100111001110000010111010111100001010010011000101001100110000111100110111110001101000000011001...

First Run Output

000101101100100111110100110101111101110100101101001001000001100001110010100001001110110000111110001011001110110010010100001110001110110010101000101111000101111111001110101100110000111010100111100111000010110000001000111111000100101001100101011100000111000110011100100111001100001000011010111000011110...

Second Run Input

Bob
01001011010100101101001001011100010101000001000111000010011100101010111101010110011010100000010001000100110011011110001100001111110100011111100100001110000111101100110010110001111001101100001111110101010001110000101001100100101011101010110111000000110010001000111111010010101101001111100001111000...

Second Run Output

011111011100000011101011101010111011111100100010010100011010011111110001010010111110101001101110010001011011000001001110111001101010011101110001010110111001001110111110111000101111100001011001000100110000011010101111110100010001000001000111010000010011010111111000111110010010111110111111010000111101...

Third Run Input

Clara
000101101100100111110100110101111101110100101101001001000001100001110010100001001110110000111110001011001110110010010100001110001110110010101000101111000101111111001110101100110000111010100111100111000010110000001000111111000100101001100101011100000111000110011100100111001100001000011010111000...

Third Run Output

16 67
18 89
80 61
47 82
47 68
86 31
28 29
98 51
33 32
16 17
16 98
85 66
94 92
61 97
73 59
64 40
91 95
20 86
70 83
47 2
42 79
87 66
81 65
98 35
23 55
9 21
15 28
9 53
10 56
90 91
68 48
66 73
42 89
18 91
52 72
46 90
68 95
79 6
39 95
24 17
52 7
60 32
81 99
67 65
82 77
57 47
50 32
8 92
23 85
45 83
55 26
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #69:

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

First Run Input

Alice
101111011100001100001010000010101000101110011000011000000000100101100000000011011100011111010000101101100001100101101011101110110001111100110111100001010110100011010100001001110111100000001011100101100011001111001101111110001011000110001011100100001010011010011110101001110101001010100001110111...

First Run Output

101100110100100011000001110000001100011111000101110011110111110101101000100011011001101110111100101101011101100010000001101001101011000000000001001100101111100110100000110011011011000011101101000011110110101011010001101001101010001100001001110100101100111010010111101001111011110100110101111000110101...

Second Run Input

Bob
10000100000011011011111001011000001010111110001011101100011111010101110010001101101111101101011001101100001101111101000111110101001110010010110011111000100000100010100010001100001111100100000000100011000000011110110101100111010111101100010101110111000001011010000011101101111011000011110000101111...

Second Run Output

100011110011100110101010111001010110110001001100101011010000010000001010001010010100010000001101010110000011010100100010000000111001111001101000101000110111110110000100000111101100011000110011101100001111111001011110010000011011001101111100011010000110100100110010000001101100000111010010110111100000...

Third Run Input

Clara
101100110100100011000001110000001100011111000101110011110111110101101000100011011001101110111100101101011101100010000001101001101011000000000001001100101111100110100000110011011011000011101101000011110110101011010001101001101010001100001001110100101100111010010111101001111011110100110101111000...

Third Run Output

86 40
3 62
32 50
32 30
61 36
38 82
47 57
67 29
68 40
95 64
80 50
74 66
67 96
64 61
22 7
70 72
34 66
81 89
52 5
41 53
96 23
45 87
88 35
82 10
94 25
4 47
46 48
97 76
98 78
36 20
11 1
66 82
57 20
67 2
32 18
50 69
72 87
17 71
54 29
90 30
14 64
10 24
98 37
58 52
89 72
10 55
85 38
53 6
71 84
54 32
81 78
3...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #70:

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

First Run Input

Alice
110111000100001000101000111110101100001110110010010010101100100000110101111111101000011111100001111001101000111100011100001011111101110000110100100100111101100001101110101011111100100100011100000010101010111111101110100100100100010010011100010101011000101010111001010100001101101111101011011010...

First Run Output

111101010000101111001110010001011110011100110100111010101101000011111111111110000000001111100101001011001111000100111011001100000100010100110001100011111001010111110111001001101111000100101000100000100100101011011000010010111101011010001111011110111001101101010001111101111110101000101001001010000101...

Second Run Input

Bob
11011011110110010111010000101101001101000100000000101111100111001000001011111111010010011110111101100000010111100010000101000100001001001000100101001001111010110101010011001010010110111001110010001100111001101011011100101011101000000110100001001010111001111100000000111101110010000100010001110010...

Second Run Output

111100001101011011000011100111111110001011001000011000000011001010100101010010001010001001011101110111100001001011010100010100101010011100000000011101110010000011000001001001001110101100111011110101110101000110000100110001110100011110111011110000011001111100111001010101010001111001010011010011000111...

Third Run Input

Clara
111101010000101111001110010001011110011100110100111010101101000011111111111110000000001111100101001011001111000100111011001100000100010100110001100011111001010111110111001001101111000100101000100000100100101011011000010010111101011010001111011110111001101101010001111101111110101000101001001010...

Third Run Output

86 19
88 45
38 44
38 91
71 62
14 90
1 23
44 43
100 45
24 37
59 68
60 44
4 96
48 66
52 15
84 97
39 37
8 11
62 23
5 97
43 4
24 75
82 83
50 53
88 94
8 2
69 27
95 60
71 51
7 77
37 95
94 40
27 34
34 41
58 55
63 95
74 64
26 65
57 25
47 44
31 99
20 68
5 44
21 7
77 72
39 31
57 79
64 80
88 36
8 36
15 35
73 6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #71:

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

First Run Input

Alice
101001101011001101101001100011000010111001101001011001000100000010010100010101110011001101010101010010011010000101011000110101111001010001101110001000000010110000110010010100110000101110110100011001110000101011001110100100110100111001100110010111111000001101100110111110010001000000111000010011...

First Run Output

100000111011010101011100110100101110110001011010100101000001110101011001101011000010000111011010111111111110011001001101000101010010111111001111101001111111001001010111000101111000111100111110100110010001100000010000011000000100110010010011110000010101101100011111001011110011101000101111000011101111...

Second Run Input

Bob
01000010111011000000000110000001010000110010010111110000100011100111111100110100110101101000110000001111010110001111011000010101100100010101001110010111001011101010010011010101101011110101100110011100111010111101111111111001000101101111101010110001010110101000001110111010111010101101000001101010...

Second Run Output

010100010110111011000110010000000000110101110110001010110000110010111101110011001100100000011111001011001001010001000010100010001001011000001110001010101011000010010111100100001010011001100001101111111101010010110110101110010010001010100110001100100101111010001101010110000101000010011110000000001101...

Third Run Input

Clara
100000111011010101011100110100101110110001011010100101000001110101011001101011000010000111011010111111111110011001001101000101010010111111001111101001111111001001010111000101111000111100111110100110010001100000010000011000000100110010010011110000010101101100011111001011110011101000101111000011...

Third Run Output

10 84
14 20
72 52
75 69
49 55
42 60
25 76
83 55
43 44
68 27
53 30
93 1
73 32
43 68
41 58
81 91
92 66
35 74
1 34
77 69
80 67
42 97
55 71
83 47
26 5
77 57
69 38
76 42
100 58
99 31
59 17
65 10
22 19
75 46
55 42
1 79
28 14
91 93
38 40
76 95
51 28
43 24
5 43
85 9
56 58
30 18
8 51
55 97
36 22
72 16
81 34
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #72:

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

First Run Input

Alice
110101100010010011100011111010110101101111001000011101101010010100100011111010110111010100010100011000001010001000101010010000111001110001111001001111011111111011101110001101111101001111111011011011110100101101011111000110100000001110000111001111010011110101000000001000011100100011010100110101...

First Run Output

110011110101001001100010111111100011111111100011101101110010010000100011101001010101111010000101001110011111110011010010000001100000010100110000011001111111011010100010100010011010110000111001110000110010110111011111010110110001011111111001010001110101011001111111101011000011011011010010000100011000...

Second Run Input

Bob
01001011000011100010000001101000111001000011111111010111010110100101001100010010101100101111000000011110101000110010111000110110111110011101111100001010111101110000001111001011101000011100100101001100100100011111010101001110100111110110101100011010000011001011110001000001010100010001011101111101...

Second Run Output

011001010010011011110010010100111000001010101000110011110010010001101001100000111110001101001000000101110101001011010111000001000101010111111000010010010111001110000010000001010111101111000100011100100011100100100101001101001001110101011101100111010100001010011010011110110100101001111101110100011011...

Third Run Input

Clara
110011110101001001100010111111100011111111100011101101110010010000100011101001010101111010000101001110011111110011010010000001100000010100110000011001111111011010100010100010011010110000111001110000110010110111011111010110110001011111111001010001110101011001111111101011000011011011010010000100...

Third Run Output

5 36
29 56
62 100
34 35
94 9
55 92
77 94
80 74
42 81
72 60
65 36
46 76
92 31
81 14
53 90
21 70
51 54
68 58
54 62
92 10
3 94
82 80
4 18
15 77
55 9
47 47
40 56
72 41
88 88
94 12
95 79
78 70
94 87
18 98
39 28
49 51
61 89
82 46
73 34
5 48
70 74
52 62
18 97
96 89
22 6
70 71
27 49
64 97
82 65
66 64
67 61
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #73:

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

First Run Input

Alice
010100111001110101001010011110111101100100110100110000110000000100100111000101010101111111100010110011001010100011101110111111101000101000101101111010010001000111010001011101100101011000101000111101111010110101111011100010100100111000001000010100000100100111010100001010101010111100111100000011...

First Run Output

010001110111110110000000011010100001010110010101001000111000110000110000001101010011000101010110000011110011000000010001111101000100001011001101111110111000111101000110001110111110010011001001001101010101110111110100111111111110100011011110001010101110001011001100110111000001101110110111011110110010...

Second Run Input

Bob
00011111101111101001011110100010011100110001000000100110001010110000100111000111010101100011000011110101000111100111111000011011101011100110111101011100111001011011000101001010110001010110011111010000110001000101000010011101000010001011000110111111010110100011100100101100111001010010110011000000...

Second Run Output

001010000100010001101111110010110100111100011000111001011010010101100010111001100011001001010001011011110001000110001011010101110011101101101000001000011000110000011100101001010011110011101111111101111110001111010001110010110011011001001001011110001001110010010101100110100001000000010101001000001110...

Third Run Input

Clara
010001110111110110000000011010100001010110010101001000111000110000110000001101010011000101010110000011110011000000010001111101000100001011001101111110111000111101000110001110111110010011001001001101010101110111110100111111111110100011011110001010101110001011001100110111000001101110110111011110...

Third Run Output

48 81
64 83
38 36
3 21
57 68
44 18
32 12
100 24
34 97
61 89
88 70
67 47
26 77
7 41
70 35
17 50
12 81
3 90
14 60
94 58
35 88
22 48
49 66
81 12
51 70
64 27
60 84
73 93
72 15
55 96
63 91
57 5
88 8
70 19
17 49
9 46
62 88
60 72
16 47
48 76
17 22
66 74
53 77
27 36
5 21
52 98
89 70
56 30
43 28
100 18
24 30...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #74:

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

First Run Input

Alice
000110000010110001010110111110010000010001001111000000000000001100100111011001110110001000000101001001010000100100011110011011011010011110010011011011100110100101010000111111100111010010000100111101000111011110110111100010001010000011101000011100110100000101110000011011111111111011110001110110...

First Run Output

001001000101010001001010111110110001110101010110101010000100001000011100001000000011000100101011111101010010010010010000101100000000011111001110011000000111111111100010100001101001110100100001010110100011111110110110010111110100010111100011001110001101010010001111011110111110101000001100010010110100...

Second Run Input

Bob
00010100001100101010001011000101101110101110100111001111111011001100011001011101010100000011001000100110111011010111110010000000100111110101100001101001100101010101101011010100111100000110110011000011000101111001010011100001100010100010110101000010010010101100001000110000101011001001001101110000...

Second Run Output

000011111100010011010111000101111010100111001000100001001111100011011010000101101011101011000010011010111000000111100111000110110101111001101101000111001111000111100101110110111110011110110010001000001010010101110110010000010010001101110111100011001001001010111010000110010010010100111000010010100110...

Third Run Input

Clara
001001000101010001001010111110110001110101010110101010000100001000011100001000000011000100101011111101010010010010010000101100000000011111001110011000000111111111100010100001101001110100100001010110100011111110110110010111110100010111100011001110001101010010001111011110111110101000001100010010...

Third Run Output

41 8
22 72
82 33
23 25
73 31
8 89
45 35
34 99
98 85
60 24
8 87
24 50
79 14
36 43
72 95
77 66
96 6
18 41
34 31
55 29
54 96
72 80
6 71
95 5
19 91
52 88
100 51
58 1
38 5
1 4
3 80
53 27
68 96
47 74
55 33
25 71
15 31
39 37
100 49
67 81
14 38
14 59
85 24
70 69
10 17
43 79
7 50
99 25
83 37
60 3
15 36
13 6
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #75:

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

First Run Input

Alice
111100010111110010010111011111001000110001110011001110010010100111011001001110001100010110110011110111111101101000010011101010110011011010111000101011011110111000011001100001001111100100110001001110011101101111101100000010011010000101101111010101001011100011010101101111111111110010100000000110...

First Run Output

110111101110101010100100111101111001101110010001001001100100110000111111100010110010101100001100010111101100000111101100011001111001111011100110110111111111110100001111000100101100000010001000111000000011110011100101010101101100010001111111001010100100100011001100101101000101010011010010101101111101...

Second Run Input

Bob
01010111011010000101011000000011001110100100001110100111101000001100111010110100010100111101101111010010100010110001000001011001011110001100110110100010001001001101101100010110010111011000011011011010011001011101011010111011011111010111101010011101110011011111011000110010101001011110011100100000...

Second Run Output

010100101101101110100100010111101110111110111101101101010000100011100110000100110110000111100110110101010100100010001110110010100110100111101101101100101011010110110100001001101000011010101100100000100110001100000111110001000110010010111110000100000010011100101001110100010110000111010000101100010110...

Third Run Input

Clara
110111101110101010100100111101111001101110010001001001100100110000111111100010110010101100001100010111101100000111101100011001111001111011100110110111111111110100001111000100101100000010001000111000000011110011100101010101101100010001111111001010100100100011001100101101000101010011010010101101...

Third Run Output

51 40
34 93
100 13
22 38
11 95
4 56
53 70
80 7
35 94
27 44
35 30
70 54
96 9
3 82
7 66
100 60
59 4
2 64
94 58
24 19
4 13
72 3
46 83
9 99
96 63
49 51
15 7
12 39
11 9
57 20
22 32
58 96
91 78
89 35
41 40
27 75
99 44
18 15
93 84
61 85
12 11
9 42
31 19
11 75
78 40
97 52
73 74
1 61
13 86
59 5
45 72
35 96
9...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #76:

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

First Run Input

Alice
001000011011111001011100011010010011100100001101011011000101111100110000101111100111001000110111110001010111101110011100010001101110111101000100010010111001000010110000001100111111111111011110100110100101111001110110101100011101111011100110100110111110110011101001001101100101001001100000001000...

First Run Output

000001110101001110100111101011100000001110000000000100101100011000001100110101010010010011000100100111111000011110011110001100010111110011101001011000111010110111011010011011110000011101111010100100111010111101100001011101011000011111011101001000000101101000000011000001000000111111001110100111000001...

Second Run Input

Bob
01111010010111101111100001101101100100100101001001101000100010001001000010001011100000100100011011000011010100011011011110111011000101010111101000001011000101001001111011110101101001100111111001110100010110100110001011111101001001010110011011111010111010011101001011001110011100100101011100100111...

Second Run Output

011111011000010010101000011110100010110001101100100110000000000011011101110000001101110111001100111001101011101000100111000101101001011101110001110000100010000000001111110101111001001101000011111010010011000110100110111001110011111111000100100000101110111010001111110101010101001111110001010000111111...

Third Run Input

Clara
000001110101001110100111101011100000001110000000000100101100011000001100110101010010010011000100100111111000011110011110001100010111110011101001011000111010110111011010011011110000011101111010100100111010111101100001011101011000011111011101001000000101101000000011000001000000111111001110100111...

Third Run Output

49 19
31 5
35 46
6 85
95 75
85 21
79 38
54 15
4 56
34 62
84 54
26 94
87 13
41 41
85 42
58 71
48 93
17 52
93 69
92 24
87 66
25 73
88 69
94 98
31 68
20 97
66 16
64 52
2 88
39 87
70 15
16 32
48 55
2 68
47 72
82 75
47 52
7 89
42 54
71 82
74 96
24 43
73 55
100 75
35 18
37 94
61 94
80 100
81 30
53 8
100 6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #77:

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

First Run Input

Alice
100010100110111001001001001111001010010000010111010111111001101111010100011010010101000011011100111000101001101010001101000111001111111101110010000111001010101101100110001011011100001011110010011000000101101110000011000110011011001110100100001101010011110001111011111100001101101001100001111001...

First Run Output

101100011100000001010001100001001001011011111010001100000100111001111110000000100100001001111000111100001100100111111011000111011101101100010101000111111110011101010010110001001001000001010101101111111010010101110110100011001001111110101101110000110001001100100000010110011011000101110100011100011110...

Second Run Input

Bob
00101110000111011011100101001001100101110100111010100010110010100001101011001100110011011011011110101111010000011110101111000010100111100011111111110110101001101100101000001001000001010010110110101000000011111111100111111100011101111011111001111100100110111011110101010001111010011110101001011100...

Second Run Output

001011000111101111110101000100111110001011111100101100101110001100001111001010000000110111010100010110000010010100000001101010011110100000011010010101101110100001000011110101111010001011100111010000110011111001100010110011011000000011011101101010011110011111110101100011101010100110010001111000011110...

Third Run Input

Clara
101100011100000001010001100001001001011011111010001100000100111001111110000000100100001001111000111100001100100111111011000111011101101100010101000111111110011101010010110001001001000001010101101111111010010101110110100011001001111110101101110000110001001100100000010110011011000101110100011100...

Third Run Output

94 52
27 16
75 74
46 69
41 23
31 84
69 15
89 27
49 76
64 64
32 31
11 91
3 99
10 74
33 29
11 41
40 15
42 6
96 26
35 19
45 46
57 72
62 64
83 78
3 19
97 93
47 5
54 37
59 74
83 56
1 49
46 87
17 36
55 69
22 2
52 44
70 96
15 94
100 65
64 87
80 8
31 66
78 98
4 85
43 32
81 17
20 91
95 94
10 54
59 1
32 9
86 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #78:

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

First Run Input

Alice
010110100011010001111001100011000111110011100010010100011110011110010110100001010000001101010000101000000110110101000110011000001010100001000000111100011000010000001100010110001011000000011101000000110111101100011110100110000101001100010001111101100001011110000101100001110100001000101011100010...

First Run Output

011000111001110110000011111100110100011011000101000111101001010101011110110011100111001001111000100100110101000111110100111110011110011011000010101011011100100010000010000010111000110111010011010101111010100011101001001001111101111111111101000111010110100110101101000111011100000001000010110011011110...

Second Run Input

Bob
11001111111110011001000101001000110100001010100001110100000111100010111010000000001001110010101111000100011111000101000100011111011111100010010010101011001010110010010101110011100100000010010111101010110101000110100100000001110000010000110110000000110000011101010000001101010010001011010001010110...

Second Run Output

111111010000111111001101001110011011011111001001001001001111100000001001110010000111110110101001011110001001011110011111101011000110000111110011111110111100111110110110011000010011011011101111010001110000100111011110000111110000111000111000011100000010010111011100111001111000110001010111011110100101...

Third Run Input

Clara
011000111001110110000011111100110100011011000101000111101001010101011110110011100111001001111000100100110101000111110100111110011110011011000010101011011100100010000010000010111000110111010011010101111010100011101001001001111101111111111101000111010110100110101101000111011100000001000010110011...

Third Run Output

86 49
1 87
87 52
10 73
62 93
32 33
85 75
66 95
2 56
29 87
46 67
23 68
100 16
64 18
12 56
50 1
43 40
87 26
66 16
77 52
45 41
20 91
24 71
32 71
11 79
35 62
77 19
99 87
99 59
100 5
68 12
88 64
45 91
89 74
15 17
40 26
23 10
90 9
27 39
91 62
87 31
67 24
90 17
56 8
84 48
21 57
91 12
7 38
61 62
74 3
21 61
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #79:

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

First Run Input

Alice
110110100110111100011001011010100011001110101110000011000111111000100000001001011000010010011110011111010100101010000111100100100010001011011000111110110001101100111110100110000100001000111111000111000101110011100101110101111111010001011000010111101111100100010110011111111001111100010010100011...

First Run Output

111101000010101100100010001111110000011100101011010111101100100111011011111100000011110111100001000000011101110101010111011110011100101001100000001010000001110010100011110110001001010011000000011100111001110001010000000111001101000100110001001010000101011010100111001011011100111001001010000001111010...

Second Run Input

Bob
00000011010111001100001010011101100011010100000110011001010011100100001010101011110000100101111001011100101111000011111111001101000101111001110001011000001100100001000010100110111001000001111100011001100000100000000010000100110100100010000111010111010110010000011010100101011100001101010110101001...

Second Run Output

000110100111001100100000100000110011010100001010001000000100101111100001001011110101100111001110011110010100001011010001111111101011000110101010011101100110110111111101111101111010101110101011101101000011100011111110001111100100001001110000101101011001101010100100101110111001100101001001100100001001...

Third Run Input

Clara
111101000010101100100010001111110000011100101011010111101100100111011011111100000011110111100001000000011101110101010111011110011100101001100000001010000001110010100011110110001001010011000000011100111001110001010000000111001101000100110001001010000101011010100111001011011100111001001010000001...

Third Run Output

24 33
44 90
54 63
50 10
91 89
13 88
70 78
70 93
3 42
83 1
60 69
72 4
57 42
21 41
74 35
67 52
72 2
73 33
10 55
31 28
52 48
18 74
21 53
95 90
7 64
2 28
36 52
15 61
97 98
34 64
61 44
22 57
96 91
69 78
33 54
82 32
100 43
1 12
45 1
98 99
89 92
82 69
5 55
95 45
60 76
84 57
68 91
74 76
22 11
73 50
46 34
10...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #80:

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

First Run Input

Alice
111001101100111000111010011110101110001111100111100110110100011110001011011101000010110000011110001100111111001100100000110000011001111111111100001010010100001110001100111001010110111100101010011011111010101000000001010111001001101011100111110101001011000011111101110000000000011000001010110000...

First Run Output

110101001001011011001000000010111001000010111001010101011111100000110011011110100000111111010001111100011010000001011111100011001101110101011100101011101110101011011101101000100000010010010111100111101001001000101001001011111010100011000111010011111100110101011001010100011000010011000001100010110111...

Second Run Input

Bob
01010101100010001100111000111001111101010010000001011111011101000101111110111001111101101111100000011100010000010001000101111101111010100000001010111101110110111100111000101010101100100101110100011100001101101001100111110111011001011001000111110101010100001110101100100100011100010110011101001011...

Second Run Output

010010010111101111011000110100011111110101001110111010001001100110000010101100011101010000011101001000111101010101101111100010001011010101001001101001111001010001101110111011100101101001010010110001011011100111110111011111110001001010000010010111001101101010101111110001101101111111100010000111011010...

Third Run Input

Clara
110101001001011011001000000010111001000010111001010101011111100000110011011110100000111111010001111100011010000001011111100011001101110101011100101011101110101011011101101000100000010010010111100111101001001000101001001011111010100011000111010011111100110101011001010100011000010011000001100010...

Third Run Output

14 4
26 34
34 8
55 27
34 6
84 77
47 5
70 53
22 63
90 68
36 58
97 77
53 89
58 38
95 37
93 90
70 76
5 1
6 23
40 46
79 92
57 83
34 70
2 19
91 46
27 75
88 18
39 75
23 40
93 90
67 12
20 62
94 56
81 7
2 75
33 39
74 66
63 80
56 98
16 47
16 71
2 22
71 14
90 90
34 32
85 19
22 44
56 2
100 30
85 25
16 91
64 46...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #81:

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

First Run Input

Alice
100101011111111011100000011001001000101110011100001001001111110010000110000100001001010001101101110010110111010111101010001101101001000000101100100011100010110011110100001101001011010110010111010111110011100100110110010011000110010001101100011011011011011100000000010011001110100001110100000010...

First Run Output

100111101010101100101001101101101011111001000110011101001011010111010010101100111001001000110010010001100101101111011010010001110111000010000000001000010110001010101100110110010110100111011001001100100001001000000110100101010110100001101000110011100110100001101010101010111001000100101100111100000001...

Second Run Input

Bob
01001100101001010111101001100010000111101001110110000101101111111010110110111100010110010101100100001001110110100011011111101101110010100000110001110010010100011110110111001111110000011010010101001111111101011000101010110101001001011001101001101110101100011011111111000001111010011110010100011011...

Second Run Output

011001101111011010000011101111000110111111010110010011101001110011001011001010001010110011100110110100010010100100101110101001110101101101110001110101101111010110001001101000011001000010111111001100100000101110101011001100011111101001010001010110000010101010111110101011001111100011111101000111110011...

Third Run Input

Clara
100111101010101100101001101101101011111001000110011101001011010111010010101100111001001000110010010001100101101111011010010001110111000010000000001000010110001010101100110110010110100111011001001100100001001000000110100101010110100001101000110011100110100001101010101010111001000100101100111100...

Third Run Output

82 45
41 94
82 29
81 31
23 98
50 82
79 24
34 85
6 70
37 48
91 17
80 86
36 28
16 82
58 10
40 41
71 7
15 57
96 22
93 18
89 11
1 9
42 33
30 40
77 73
6 78
74 1
18 65
10 70
51 86
24 28
40 42
49 2
13 9
18 94
40 43
62 76
56 53
88 91
34 2
71 93
100 60
2 19
15 89
59 44
52 58
52 38
10 96
96 88
12 80
15 92
36 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #82:

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

First Run Input

Alice
110101010001110111111011111001000111010001100110011111110011000100100110001110111011000010010000100000011101100110101111100111001100000101001000101011000101100000000001100011100000100100011111001000001111011000001000001000001100101110100110100100111101101011000100001110011000011110000100001110...

First Run Output

110011010000100110111111100101010001011100110000010000111110100111000011110111100000110011001011111110110011001011000110000001100000100101101111010000100101000101010001110001100011000011110101001111110111000010000111000001000000100100100100000011100000010000100001011111100110011111001010001100110110...

Second Run Input

Bob
01000100111001011101010101010010101011111011100101101100111011111000101011001100011101010000100110100001000111101010110011011100111000101101011101011100101110010011101011100010111111110010001011100110110100101010101101011101000011100000001111011101110010001111111110001111111101100110101001010101...

Second Run Output

010111111101010011010010000010101111001100000111011000101011010101101000100010010011001101011001001010001001011100011110100000001010101110111010110101010111010010000101111010110110100000101010111110000001110010000011100100000110011001100101110000000111000101011000000110010100010101001000011011111000...

Third Run Input

Clara
110011010000100110111111100101010001011100110000010000111110100111000011110111100000110011001011111110110011001011000110000001100000100101101111010000100101000101010001110001100011000011110101001111110111000010000111000001000000100100100100000011100000010000100001011111100110011111001010001100...

Third Run Output

62 62
62 76
75 79
39 46
91 37
10 1
16 50
72 90
58 1
60 47
16 9
13 60
73 18
52 59
86 55
55 83
80 83
70 39
94 33
58 51
58 35
29 18
37 54
48 64
42 54
32 48
34 80
71 51
89 55
96 91
22 85
72 60
32 100
21 66
82 86
58 13
47 73
92 28
6 90
40 5
11 66
5 35
59 34
50 2
99 51
26 34
91 77
2 13
2 58
68 83
66 62
62...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #83:

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

First Run Input

Alice
001001010000101110010111010101100101101111101010111001110110001001011000011011000101000100010110101001111100001000010010010100011001111100011010110010100000001000011110011001010111110000010101100101100010000101111100110001111111001011111110110001110101011001111110101010110110111001001000110011...

First Run Output

000011110101110101010011110000000000110001111001010111000000001100010001110111111111011011100001110001100110110110010010000000111101011000100011000100101000101111011111000100111110011000101100001010010100100010100111110100010101101111101101111010110100100001100111110010100001010110001101110001010100...

Second Run Input

Bob
11000011011001010010101001000010011010011110100011101111011000010011111001001011100100001101010101111110011010011001001011111101000101111010101101000011111111100001011001101101111011001010001011110011101101100110111101101111001011001100011111100101101110100001001110110010011001011100100001111101...

Second Run Output

110101110011010001010001101111110101011101000000001011111110001001111000111100010111010100010111001011111000011110101011111000101011111110111101101110101010000001000100011001000000101001101100110111011111111100100110000011000110011101010100111111000110100000011000000001011110101000101001100100111110...

Third Run Input

Clara
000011110101110101010011110000000000110001111001010111000000001100010001110111111111011011100001110001100110110110010010000000111101011000100011000100101000101111011111000100111110011000101100001010010100100010100111110100010101101111101101111010110100100001100111110010100001010110001101110001...

Third Run Output

31 30
85 78
36 54
20 11
80 49
46 16
53 79
64 85
76 80
80 62
14 10
18 32
3 8
75 47
6 74
12 20
30 25
16 69
94 69
13 27
64 62
71 20
37 80
82 53
6 69
53 63
84 64
89 31
5 34
48 52
35 95
80 49
65 28
3 52
98 24
59 28
13 72
86 23
2 6
60 2
32 30
18 18
40 1
97 70
3 7
72 84
12 35
50 91
15 48
43 55
62 62
11 95
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #84:

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

First Run Input

Alice
110111011101101011111010000110001011110100000011110110010011110101110001110010100001110011101110010001001101111011001000101111011101001001000111110110001110100001010111111100110101001011010101110101000111111100010011001001011100011001110000100001101001100101110110111100100011110011101001110010...

First Run Output

111110110000110101010001010000101101011001100011100100011010001101101000010000011011111011001010000001001010011111100101100100000110100110010000111101100010001001111100000010100001101100011010100011001111101100101000101100111000111111111011000110100000000011011010100010001011010010110000111010111010...

Second Run Input

Bob
10010110010111000010001111111110111110011101100111101011010110110100111110001001110111010001010101110000010110101110110000100001101101010011101100110100011010100001101010111000111000111010001100010111111100101110010001100111100110100100010000010000111110111111010011110011100111110110010000111110...

Second Run Output

100101110100000010111111101111011011001010100010010100011101010010100111010110001001111111001110000110001001100010101011011110010111101000110111111111001001101101011101001111101011110100110011110000101100001010000010100011101101100101110011001001110100011000010000110110000111011111011001010111100101...

Third Run Input

Clara
111110110000110101010001010000101101011001100011100100011010001101101000010000011011111011001010000001001010011111100101100100000110100110010000111101100010001001111100000010100001101100011010100011001111101100101000101100111000111111111011000110100000000011011010100010001011010010110000111010...

Third Run Output

10 80
59 5
16 91
41 73
6 91
73 73
91 32
46 83
94 53
52 95
47 49
32 69
52 67
55 40
59 84
87 7
51 31
96 70
65 48
89 99
76 99
28 32
82 61
74 24
32 3
29 63
30 28
55 73
38 2
65 75
10 37
3 32
79 5
62 2
70 80
69 36
76 66
7 91
72 53
24 30
90 14
11 99
13 3
20 9
59 99
7 72
20 60
23 69
77 8
86 88
18 3
15 16
85...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #85:

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

First Run Input

Alice
100100000001100101110111110110101110000110110010010100110111001000010111101111011000000010111000000111101111110110010000110110010010100000110001111111110111111110001111110010110101001011011111110110000011100001011100100000001011101001010010000110001100110000011101110100000100010101010111111100...

First Run Output

100001010011111001110011000110100010111011100111101101001100000001011100100001010100101110100001001011110001101111000110110010001011101101110010001001010011110101001011100111101100111011111110001101111011101111110110001101011010001000001000101011101100001010101101000110000010011001000010100110001111...

Second Run Input

Bob
10100011101010011110110000001101111101111010100001001001111111010101100010100011111001010000101000111001001001001101000100000000101011101110110000001011011101111111100101111000001101110010110001110011110000011000000000110111000010000000101010100011101010100101111111100011110011010110011110010110...

Second Run Output

100010010110010000011001000011000010011011110111100100011000110111100111000101000011000111000111110110111111100011001101011010001000100111001010010010110010100010101000111011101100010101100100001111110110100110100011000110001001111110001110001100001111110110001110001001100000001001101111100000011000...

Third Run Input

Clara
100001010011111001110011000110100010111011100111101101001100000001011100100001010100101110100001001011110001101111000110110010001011101101110010001001010011110101001011100111101100111011111110001101111011101111110110001101011010001000001000101011101100001010101101000110000010011001000010100110...

Third Run Output

65 40
70 86
93 32
80 19
96 91
75 20
29 91
40 15
20 6
31 43
42 87
12 29
67 25
92 59
87 35
59 10
27 85
58 54
71 48
51 63
48 19
29 96
77 65
22 85
81 30
76 99
2 31
56 54
52 65
2 42
30 96
16 95
24 47
58 5
66 96
3 94
99 60
33 57
68 3
55 82
94 23
82 76
2 3
60 41
10 18
40 68
82 60
27 11
6 63
58 45
90 75
43 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #86:

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

First Run Input

Alice
000100111110100011011010101000101100101000100011110010111110110011001100011101000010101100111011010101101010010111011100101110011110100110000100100011010001101010110000001000001100100100010001110000010010100110000011000010101001011100011100010101111001001011000110010101001001001100110111101011...

First Run Output

000110111000100010101000101100001101100000110100010101010001111001100011100010001011101111010001110010001000011011101000111001000101110111101100011111111111010111011010001011001101011101010100011011111111000011100001111010110010010110100100000010110010101111100101101011011011101011100101100010111101...

Second Run Input

Bob
01000110110110001011101010011010110000101101010011100110010001000000101010101010010000101100001001100000010011010101001000101111001100111111101011010101101011010010110011101010110110111011100010011100000011011001000101111001000010110110010000110000001010110111000000110011000011100110101101110111...

Second Run Output

010110010100111001001010110110100100010011100111101111110101010100110001111011110101001010101100110110010100010000001000010001100011100000011101100100100100000100010110111110101001010100000101001101001000101001010001001101101101001100011101000010101010101000110000100111011100110110110101000101000001...

Third Run Input

Clara
000110111000100010101000101100001101100000110100010101010001111001100011100010001011101111010001110010001000011011101000111001000101110111101100011111111111010111011010001011001101011101010100011011111111000011100001111010110010010110100100000010110010101111100101101011011011101011100101100010...

Third Run Output

59 61
52 63
73 7
86 77
17 40
64 21
87 88
7 99
1 65
67 91
82 10
71 75
58 55
28 15
61 69
2 87
53 84
66 60
31 89
46 58
28 21
60 24
56 66
8 85
12 7
67 90
14 56
37 32
78 51
50 33
32 12
94 75
48 98
74 26
70 17
4 58
50 3
17 83
94 57
26 44
18 69
97 72
38 2
7 94
68 100
94 98
7 94
49 42
43 39
55 73
58 52
88 6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #87:

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

First Run Input

Alice
110111001100100010001011001010110110001110110001111111100100110111110111001010001000101001101110100101010110001010010100100111001110010011100100011011001100001010101010100101101101000011100000000001011111010010110110010111111111001011001111111101110100000011100110000000010111100101101000110011...

First Run Output

111110011000000111110001111110111100001000011100011000001110111001010010000011011001010010001100000110110110000110100001000101111111100110001010101111110001011011010110011101111010100011101101010011100010000001011101101000011110101010001110000001010110001111001011001001101110111111101010010001101010...

Second Run Input

Bob
01000011100101011000101100111100111100000100110000111001101100111010000010101110101100000010100101011110101010111010110010010010001001000011000010110100011111001011001100011110110111111101110111101100000110111100010010110110110001010111101001010111000011001000111000111010000001011010000110111001...

Second Run Output

010010001010101110000001011000001110001001100001001110010101011011010111111000010100001110000001000000100011100100100010100101000000100100101011111011010110001110100110000111001001010001110011010010101110001000100000010011011101001100001110011101111111111110100101001010111011101010011110001001110111...

Third Run Input

Clara
111110011000000111110001111110111100001000011100011000001110111001010010000011011001010010001100000110110110000110100001000101111111100110001010101111110001011011010110011101111010100011101101010011100010000001011101101000011110101010001110000001010110001111001011001001101110111111101010010001...

Third Run Output

75 25
3 59
17 13
77 35
48 8
18 80
97 18
57 12
37 1
8 98
82 46
81 31
20 62
71 37
27 4
46 47
91 8
91 11
79 5
65 5
52 50
97 71
89 14
28 87
89 83
13 20
19 59
74 34
33 3
41 32
28 97
13 21
21 3
53 12
60 48
13 56
54 90
28 90
27 67
74 58
94 64
60 94
29 38
29 48
97 30
35 27
93 35
99 14
27 18
10 80
61 44
73 3...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #88:

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

First Run Input

Alice
000011010000000010000110111101010010000001110111011010011000000011010000100110011111000011000110110001110010001011010111000100110000100111011110101110100110110011101111010101010011010111011001011111111110101100110100111010111101111101111101010100111111011111001100100101010100101000000011110110...

First Run Output

001011011100111111001101101110011100011111010000100001001000111001101010000000100111000110000011101101111001010100000010100010101000000111011101110000011011101101011110010101000000101010011000000001001000001110011100101010100110000101001010101010110111100011011010010000111000001110011110101001010101...

Second Run Input

Bob
11101011111000010110001111111000010101100110011000111111010100001000001101001110010011001111010101101101000110011010111010101101101111110011111011111101010011100101001000010111101001000001110111101001101001111100100110011001110111011001111011010110100101000101100110111001111110110100101101010111...

Second Run Output

111101001110101101100110101101100110100101110011001111111111101101000011000001110010101110000110000000100010110101111001110000011111110100010110101011011100111011100101110100111110101101110101100010111110110011000110010001001110110010100110110110100001000100000011001001000100011100101100011010000101...

Third Run Input

Clara
001011011100111111001101101110011100011111010000100001001000111001101010000000100111000110000011101101111001010100000010100010101000000111011101110000011011101101011110010101000000101010011000000001001000001110011100101010100110000101001010101010110111100011011010010000111000001110011110101001...

Third Run Output

12 64
74 63
15 90
89 72
29 63
64 25
67 11
70 60
37 18
56 72
35 40
58 82
53 8
64 1
88 51
89 40
70 26
35 13
70 97
81 4
95 28
84 5
87 51
56 46
17 93
18 75
100 79
53 58
35 43
66 30
92 85
77 2
18 1
28 21
52 73
23 81
95 96
83 66
7 89
64 70
19 50
61 59
8 14
13 65
96 68
11 27
8 2
34 60
66 75
24 35
33 38
44 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #89:

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

First Run Input

Alice
001010100100011101000010011011000110100111001011000010111110010000101010000011110011001010001001011000110010011010100100100001010111110110111011011111000100011100111110110000101110000011110111001100000111010010100011101100111111111110010110011000010010011100011100011110001111100101000000100101...

First Run Output

001101100000010100101011100000110101110111110010001011100000100110010100000110111010110100101000000011111011010111001100110111011110111110110010100001100111010111010010100010111100111100101010111010001000000000111010110101010000100000111001010001001011011111000011110111100101111101110001010010001100...

Second Run Input

Bob
10010110100011101110111110010101011000010010100110110100001110011010001000111100010001111110001010010101010101110001001110001001100000110000111011100111111111011110111011000110101111111000011101101100011100100100011010010100111100000111111010110000001110111100010100101001101101010100001110111111...

Second Run Output

100010001100111110101110011011101101011001010110010110011100000010111100111001110110001001010110011111100000011000010111000010001001110110000000000010101101001001111001100001110100011101110011100000000001101001011011111111101101100101000100111110101010000100111011001101010110110000110011010001110000...

Third Run Input

Clara
001101100000010100101011100000110101110111110010001011100000100110010100000110111010110100101000000011111011010111001100110111011110111110110010100001100111010111010010100010111100111100101010111010001000000000111010110101010000100000111001010001001011011111000011110111100101111101110001010010...

Third Run Output

48 15
99 40
33 34
8 72
30 92
76 35
87 3
1 5
54 86
81 23
21 4
63 31
47 94
89 39
30 27
69 33
12 27
59 1
72 86
48 16
10 26
37 86
84 25
57 26
63 24
67 28
57 79
1 76
37 100
90 96
63 94
52 19
9 28
14 94
5 48
85 93
49 26
92 71
69 27
14 90
45 81
19 3
2 23
41 37
78 47
33 1
40 41
88 8
100 19
42 75
11 16
86 65...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #90:

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

First Run Input

Alice
111001100110110001111110100000100010101010001111011011111100000111010001011000100110100111111001100110010011011001011010011010011101001001110101111010010001110011001100111010101001111001100100011000000011101001001111110001110011100101001111001100101111101111010101000110001100010001001110011011...

First Run Output

110100111111110011001110000000101001111010000110001111000110011110010101111111010000100001001110110110101011010101110001000010010111001010000010001010010011001011101100011111010101000100011010001000101111100100100001111101010100111011000001010101010010101110001110010110110100011111001001011011111110...

Second Run Input

Bob
11111100000100101011011101010100100010111011111110011010100101011000010000100011001011011101001001111100011110110011100100001001110001001111111100111000000001101001111110011100101110001101000011101101000101111010011100000111000110011010110000111010000000101010110001001100110000100111111000101101...

Second Run Output

111011101010001010011000010110010010010000110100101001011011100001110110110010010001010000001111101000011100001100001111000001100010001000111100111001110101111000111100110110010111111101011001010101000100111101011111010100001001101111010111100000111001001011111001100001000100110110100110001001110111...

Third Run Input

Clara
110100111111110011001110000000101001111010000110001111000110011110010101111111010000100001001110110110101011010101110001000010010111001010000010001010010011001011101100011111010101000100011010001000101111100100100001111101010100111011000001010101010010101110001110010110110100011111001001011011...

Third Run Output

10 55
63 60
18 83
80 29
93 79
72 65
49 48
36 4
46 82
24 97
28 57
28 71
52 33
33 43
94 15
12 2
31 98
26 49
29 39
74 100
56 89
50 46
67 65
45 32
42 98
3 80
88 1
27 67
40 61
31 27
70 97
64 42
82 98
78 27
86 78
28 38
17 58
69 82
4 53
69 36
71 85
96 60
23 73
69 46
69 51
75 42
57 20
96 84
29 39
27 62
21 5...

Manager to Checker

OK
You answered 99 (out of 100) questions correctly

result:

ok OK

Test #91:

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

First Run Input

Alice
101001000101001011000011010111000111001100011000100010011001100100010100100111101011111110110111100110010000001000100110110110110000001010111010111010010000001101110101010111111111100001000101111000101001011010010111001001001001110011001101001010101001001101110001001011010010101101101010111011...

First Run Output

100111000011110001100111101111010100110011000110101001111000001010111011110110011010101101110111010100000000111100111011011011100100110010001101010011111010011111101001110001000010010110010101111000101010011000111000111010110010101100011010110001010011001110111101000011001011111011010000111010100101...

Second Run Input

Bob
00001110011101000111000001100110101111100000100111101110010111111001100110111010100101100110111010000011100110111101101011100110011101000001110011011000111111110101011110010001111110111000100100011111101101111011011010100100100000001001010101100101011110101001110011100100010111010110110100001100...

Second Run Output

001101111001101010100011001100110011010101111000111111101001011000101110111111110011100001001011010010110001011101100001111000011110001100101011001001001001011101111101100100101110100011010100111100100000100000110101111101101101010001100100001101011110101101100101010100001000100010101101111001100000...

Third Run Input

Clara
100111000011110001100111101111010100110011000110101001111000001010111011110110011010101101110111010100000000111100111011011011100100110010001101010011111010011111101001110001000010010110010101111000101010011000111000111010110010101100011010110001010011001110111101000011001011111011010000111010...

Third Run Output

46 59
25 52
81 60
52 33
81 2
33 53
97 40
53 100
57 36
68 80
26 65
66 4
2 92
81 62
70 73
82 7
71 45
56 8
40 4
71 95
10 97
33 68
1 37
29 4
12 7
73 6
100 17
55 26
8 20
95 77
50 23
10 85
57 68
75 93
31 37
88 66
87 14
5 28
25 33
2 41
38 27
17 56
57 25
53 38
11 9
71 49
27 60
16 86
27 44
66 6
47 6
36 10
79...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #92:

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

First Run Input

Alice
111111000001011111110101101011101111001010100000010001010101111100111110110010001100100001010101110101010001111100011001011110100000111110111110001101111100101010111000001001010101110101010101111000011100101101111111001101001001000011100101100010011101011101101111100101101110001001100101100001...

First Run Output

111010010101000000100010101010001011011011110000010000100101011111000000100101111110110110000101101010010101101101001110101111001101101100000100100000010110000111011100011111001100001011111101011001111100011100100010011111101110000011011000010001100001010010100000100111110101100000100010011001110000...

Second Run Input

Bob
00101001001110011010101111100001101110100100000001010011011100111010101000001101111000100110000111011111001110100000001001001011110101000001000101100101100110010111110010000011101100010011101111000010001011111111101010011111111001101001001011011111110111010001111100101011000011111110010010011010...

Second Run Output

001011111111000100101110001111101100100111111100011110011111100111101100000011100011000100101011101101010010101110100011110000101110100100110011000001110110111011010110110111111100101011000100101110110011110000101001000111100000011101000000101111000001011100001101000010111010101101010110110010011101...

Third Run Input

Clara
111010010101000000100010101010001011011011110000010000100101011111000000100101111110110110000101101010010101101101001110101111001101101100000100100000010110000111011100011111001100001011111101011001111100011100100010011111101110000011011000010001100001010010100000100111110101100000100010011001...

Third Run Output

30 16
91 97
50 85
17 59
28 87
85 28
44 34
62 77
4 65
88 97
99 37
74 19
35 88
78 2
91 20
24 63
37 98
80 39
65 85
55 24
94 47
76 13
65 98
34 76
29 75
42 15
26 51
9 33
34 78
72 89
20 23
50 35
8 67
26 72
80 68
72 50
33 3
16 53
45 36
97 39
23 53
1 56
3 22
91 63
75 76
23 32
91 50
78 74
38 28
72 40
15 80
8...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #93:

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

First Run Input

Alice
010000000011111111000001001101000001101001101100111111110011001001001101110000001010011101101010110000101100001110111111010101011011011001000000011100000101110001000111111001110100010100000011111110001000101101111011000001111101010110000001101110110011010110011011001010010110011010010101101110...

First Run Output

010010110001011110101111111111001010011010110011011101000001110010011100101110010101101001001000101101001110011100111101111011010110101100001101010011101011111011000001100000111001101001010011110100110110110110011101000001000100010111000011101010111010110101011101000101100101110000001010110011010111...

Second Run Input

Bob
11110010111011011100011100100111010100011011011100010011011111110011010001010010111111001110000101011100010100111001010111110010101100010100111111000110101011111011110100111111010100011110000100001011010000010000011111110001010111101100111000001110000110010100001000100000011100100011100010100100...

Second Run Output

110110000111101100111100111101111101100000111100111100111000010111101011011111001001000000010110110101011110000100011100010010110110000010010010010101001001011101011100001111111001010001010010000110110010110000010110001011100001011000011010101100100010101100000011011100011111111010001000010101000100...

Third Run Input

Clara
010010110001011110101111111111001010011010110011011101000001110010011100101110010101101001001000101101001110011100111101111011010110101100001101010011101011111011000001100000111001101001010011110100110110110110011101000001000100010111000011101010111010110101011101000101100101110000001010110011...

Third Run Output

51 99
2 63
100 93
1 84
32 14
93 47
31 74
84 78
1 52
28 35
37 1
32 28
3 23
25 77
20 77
91 90
78 24
29 28
33 56
54 10
36 7
21 36
90 12
30 2
97 22
43 99
80 54
66 48
1 91
45 96
58 2
31 31
72 89
10 43
98 26
6 17
25 31
84 7
78 89
46 44
19 21
88 54
43 28
51 80
84 34
33 92
95 90
35 50
14 59
98 92
79 95
68 6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #94:

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

First Run Input

Alice
101000100110011110001011111100010110011001101011111101001010101101100101010111101011111010001001010101100000111100100101111100010000100010101011000010001101000111010100111011110100011111100001001101110011011010100100111000010010111101011001011011010101111011100101001110111111100101110111001100...

First Run Output

100111010001010010010100001010100000010110101100111110011011010111011110111011001000000110111100000011000010011010000101100001011110010011000101010011011110010011000101110010101110111110110110100001100000101000111110110111101000001000101011010001001001001000100010110001011001000011101001000110010110...

Second Run Input

Bob
00011100000101001011111001110001110010111101011011110001101000110010110010100000101011111000100000101001111110100110010110010100000100111010111110100011110000101110000010011110101000001110111100101000000001111100101110000001111010100001110011011110001111000100111100111100110110000110101000000101...

Second Run Output

001011110010101100111001001011000000010101000010110011010111110111001000110101001010111100101110100011111101100110111010011111000010110111011010000110110010110010110110001110010011101000000101101111110100110101000001011101001001111111011001100100100100010001100110111111000000110101000000011011001010...

Third Run Input

Clara
100111010001010010010100001010100000010110101100111110011011010111011110111011001000000110111100000011000010011010000101100001011110010011000101010011011110010011000101110010101110111110110110100001100000101000111110110111101000001000101011010001001001001000100010110001011001000011101001000110...

Third Run Output

35 48
20 27
99 69
52 64
19 5
21 12
66 5
5 83
74 53
67 82
13 48
23 52
53 80
13 10
25 68
75 26
97 63
74 66
93 54
42 70
10 8
61 33
61 99
86 81
74 99
69 71
45 71
96 5
93 25
37 66
12 10
92 6
17 17
61 92
17 84
95 95
77 68
92 54
66 7
99 4
91 89
87 14
77 66
9 83
91 26
23 76
98 19
13 56
89 91
86 92
29 71
47 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #95:

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

First Run Input

Alice
000100011010111111111000010011101011100101001010000111001101011000001100011111011100000011110110011100110100001001100001111111001111010000101001011000111011011101000100010001000011011001011010101001000010110110110010101011110100000111101010101010010110111100101111011010010000010100110000011111...

First Run Output

000011100101010101111011001000110100010110000110000000111011011001000101101111110100111110111101101101100111110100110001010000101111111110000110110011111000001011010100111100111100101100101001101111010111110000011101010000010001000101101101100011111001000100110011101101000010101000010100101001111111...

Second Run Input

Bob
00011111011001110011000001111011000010000010000100101000101100100000100111000010111100101101000011100110100001101101101100000011010010000101000011111111100010001000000110110100100100001000110011111110010001011100101100110101101111011101110000100011111111010010110000010110000110000110000011011011...

Second Run Output

001101100100101001110001010110000001111010011010011001010100100111011010111101101000001101000100111101010110101010110000111101111000011001010011111111110010101001101101111101100001000011110101101111110110010011010100011000011010101000010001100000110110000100111111011010110111100110100111111010011011...

Third Run Input

Clara
000011100101010101111011001000110100010110000110000000111011011001000101101111110100111110111101101101100111110100110001010000101111111110000110110011111000001011010100111100111100101100101001101111010111110000011101010000010001000101101101100011111001000100110011101101000010101000010100101001...

Third Run Output

75 26
29 6
65 74
67 93
45 84
31 63
3 94
44 27
68 49
57 60
36 68
59 59
2 24
18 99
37 50
40 28
13 63
57 22
89 3
75 1
37 14
52 3
19 99
3 51
66 32
74 40
81 58
57 91
8 96
83 27
74 4
84 76
30 19
25 73
69 86
93 80
43 73
73 94
23 93
1 1
23 58
73 14
83 19
6 23
42 27
57 5
74 80
61 61
74 13
90 61
76 78
30 67
1...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #96:

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

First Run Input

Alice
010000110010100101100000001110110100001000101111101010011010011010111010001100100010000010111100010111000111100001101100010000110100011000111001010100000101000000011010110001011100100001101001100000111100111001100011001000010001011001100010100001110001110101110101000100110010110110111101010000...

First Run Output

010000001011010001101000111001111000001001100011100010001001100111000101111000111010011011101000110001110000111000100000001100000000111110100100000110000110110101001100101111010010111000011111001100010100100011001000111110010001101110000011001111010011111000010111001100101010011111111000010101010111...

Second Run Input

Bob
01100111100100111000100110110111100101100001000110010101010000010011100001101010010110101100100000000110000010010011011101100001010011100000000011000000101101101111010011000000001100010011111111011100110110100001010101001011011011010010001111111111101111100001100000110001101111000111110101011111...

Second Run Output

010010000101111101100011101001100011110100111101100110100001000011000000000000100110111011000010001101001111110011110010110101011110010011011010111000011001010000111110011101110000101000011000010011000011100101000011011110000100000011101101101110111011111011110010111100100001110000010111110000010011...

Third Run Input

Clara
010000001011010001101000111001111000001001100011100010001001100111000101111000111010011011101000110001110000111000100000001100000000111110100100000110000110110101001100101111010010111000011111001100010100100011001000111110010001101110000011001111010011111000010111001100101010011111111000010101...

Third Run Output

57 36
56 47
24 83
24 50
18 30
51 73
14 85
52 77
4 3
80 66
19 63
94 2
12 56
54 5
44 42
31 41
79 64
20 87
35 34
12 55
34 90
49 46
26 19
4 84
3 68
78 30
52 3
91 92
14 58
68 69
56 19
45 2
85 19
32 58
54 43
30 72
26 35
49 68
94 63
50 61
32 57
60 80
71 67
72 46
21 16
34 6
68 63
32 42
28 29
77 93
58 77
24 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #97:

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

First Run Input

Alice
000111100111011001110011011010111010001010100010010111111110010101110101110010101010001000000111000011001000011110111000110011001001011010100001110101110110110010011110001010100000000000100100110011000100111000101100010101100000100101110011000001001010111011011101100111011010101100011110011111...

First Run Output

001101010011101011010011110100110101100100110001010011011011000010110001101100001100001111001001001000011000100110000000101011111010100101111000110101100010011111000110010011010110100000100111110011100010001111001101100111011111001011100010010110011010110100110011100101000110101011100001010100001010...

Second Run Input

Bob
01010110000000100101110111010010110100000011010001010011110110001011100010000001110011111110101011000110101010010110101010110101111111110000101110010110000010101101011011001101000011011001101001011110011111010010011101101001010101110101100001101000100111001011010001110011100010001101000001111111...

Second Run Output

010001011100111111001001110010011101111111110010111101110000111101001000111100111001001011111101101101011100010010000010001100111100000010010011100101010101000000111100000110100011100011101010001101101000100110000101001010001000100011001000111010111110000100001101001100111110110100001101001111001100...

Third Run Input

Clara
001101010011101011010011110100110101100100110001010011011011000010110001101100001100001111001001001000011000100110000000101011111010100101111000110101100010011111000110010011010110100000100111110011100010001111001101100111011111001011100010010110011010110100110011100101000110101011100001010100...

Third Run Output

39 67
60 51
7 98
1 28
96 71
23 7
52 18
9 66
35 75
81 89
21 58
5 11
36 92
56 69
24 99
59 41
21 77
33 88
45 81
74 99
80 77
40 96
34 17
96 32
40 54
35 31
70 41
95 8
68 72
70 25
18 69
13 48
68 90
80 97
63 84
65 36
95 78
14 51
100 61
30 28
23 1
23 84
49 92
5 83
3 24
22 49
29 31
99 15
51 59
31 64
48 54
98...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #98:

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

First Run Input

Alice
100100010110111100100110001101010000011101100100001111011111001100011101111110010101000110100100110110010111010010011001101100110101001011011110110111011111010010101100001111001001110000110110010000011101100100001001111011111100000011000101010110011101010100111011101110111000011000101000001000...

First Run Output

100100000110100100000111101000110001111001000000110110011111110111101110001011111110101010111110001101010111001010011010011111111100001010101001101110000010101000010010000101100110000110000010111001110100110111010000111001001111011001100111111100001101001111000111001101111011110000010110111101010111...

Second Run Input

Bob
11001101101101010100111000101000111100101001000011011000110110000001111000100011000101110000100101010011100011000101000000101100100000010100101100001111110010001100110010010101111010010101110111011100001100110101010100110011111010111100101101011111101111100110000000100100011101010000100010100111...

Second Run Output

111000010000001100000011101100101010000010100101100101000100110101101111101010010110101110101101001011010111110000100010101001110000111101011000101001010101011001111011011011111100011100000000011011000101101100110000100101000100001111111001101010011000100100100101110111101001000110001100001101011001...

Third Run Input

Clara
100100000110100100000111101000110001111001000000110110011111110111101110001011111110101010111110001101010111001010011010011111111100001010101001101110000010101000010010000101100110000110000010111001110100110111010000111001001111011001100111111100001101001111000111001101111011110000010110111101...

Third Run Output

3 60
33 34
26 49
94 56
93 88
5 30
20 8
62 48
34 80
3 93
30 45
64 91
62 19
44 74
59 53
47 4
90 66
1 78
61 43
9 15
77 35
31 73
7 18
52 46
45 73
55 16
47 13
71 36
58 7
15 77
36 75
22 82
10 83
85 89
96 62
62 42
27 27
82 17
41 46
15 99
61 47
87 70
96 4
50 41
53 60
69 63
97 87
23 23
12 94
3 3
6 20
62 98
7...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #99:

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

First Run Input

Alice
111011100011011010110011000001001000101010101000100011101010001100101001011000111100001101101000100010100111010010010110010000111111101101111110000110000111101011000101100110111010001101101000001100010001110001011001101011111010100010100000010000111010010101001001110111111011011011001011000100...

First Run Output

111010100111000000100110110111111010111110101000101001100100001101000100111111110001000001000110001001111100011111111110010001101011000110110000101101100100110111001111111100111001010011100000010010011000100101011000000110000110111101011100111011111001001000010100011011001101000101000010110011111111...

Second Run Input

Bob
11100110000000110101111000001001101011101111000101110100010011101000011010011101111111011010111111101101101011110011110101000101011011111000000110000000110011111011101111101000001110000100111101101011111011101000011111111001001010111001011101010001111100010111111100010010011001100011110100100010...

Second Run Output

110000111111111000010010011101110000100000010100001000011011010101010010000000110000010000011001101000111100010100100010001100011110110011100111110111100011000011110101010111101001001111111011000000011011001011000000010010111010011101101111101101011001111000100101101000011000101000000100101101000110...

Third Run Input

Clara
111010100111000000100110110111111010111110101000101001100100001101000100111111110001000001000110001001111100011111111110010001101011000110110000101101100100110111001111111100111001010011100000010010011000100101011000000110000110111101011100111011111001001000010100011011001101000101000010110011...

Third Run Output

23 92
34 39
23 54
55 69
17 50
87 74
95 14
96 15
89 29
95 14
94 72
53 90
72 10
71 95
77 52
63 86
25 62
96 95
82 92
56 13
20 5
12 56
88 12
27 74
18 45
50 30
36 68
27 41
52 64
73 51
38 72
95 36
36 32
60 68
15 27
48 50
68 50
18 14
98 73
83 67
12 25
32 59
14 90
22 97
79 86
41 97
73 10
50 13
13 28
34 23
9...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #100:

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

First Run Input

Alice
001010001101101110101001001110001111001011111101010110010110000001110101000111000110100011111011101100100101001101111011110111011001100111100101111011111110111111111010011111100000111011010000011100000110110100101101100100010010011000010010011011100110001111111010011100000000001111110100001000...

First Run Output

001110010101110010000000101111110101101010110001011111001011001011010111111101111001010111001110001010001100110100111000001011000101000100001010010110101001011100100001010001111100100010000001001000011000111000101011100001100101100011101110100100000100111001011001101011111010110000101110010111011100...

Second Run Input

Bob
11101110110111100000000110110001101000011101010100100010111100101011101111010000111010111011100101011001010101011000111010010101111010111111110010011011001001010011101011100100010100101011001001110110111101111000101001111100111001001101001010110010010111111000000101100010101111110010010110100000...

Second Run Output

111100001110110110010101000010110111101101011111111110010010111101010101110001100101011010011100011111011100000011101100100000001010110101111101101010101111000110000000100110110100110100100101100000111110111100001010110011010110011100011011010110000101100110111001101001110101111101011101001101000100...

Third Run Input

Clara
001110010101110010000000101111110101101010110001011111001011001011010111111101111001010111001110001010001100110100111000001011000101000100001010010110101001011100100001010001111100100010000001001000011000111000101011100001100101100011101110100100000100111001011001101011111010110000101110010111...

Third Run Output

95 85
56 25
9 29
71 15
56 84
1 77
70 69
60 53
10 37
97 54
31 89
44 98
47 46
79 17
84 17
89 20
67 68
27 22
1 47
42 1
89 85
17 38
74 94
58 20
40 60
52 37
24 87
1 52
79 75
32 71
30 7
99 36
50 100
68 77
5 70
3 74
63 54
92 44
13 66
20 52
79 97
84 45
37 35
33 17
55 57
60 49
43 86
8 24
70 64
55 38
18 100
8...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #101:

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

First Run Input

Alice
100011001111011100110101000011010001100001101110011011100011110100100010101000010011110001101001001000000100111010001110100001011000111110000000001110110101111000001001010111011001110000111000101010100100011011001111000101110001110101001001100000100101001111001110010110010010100010110111010001...

First Run Output

101100110000011011000110111100101100111111101101010010010111111000100000101111000110110011011000000001001100110010111101100001111111101000101100101000011000101101011001001001011000110001100110111110000101011000001100101100100110010010110011010110011110110101010110010001000000101100110011101011001011...

Second Run Input

Bob
00010110100010010000001110110111101000011111011001001000110011111000111100101010011100100110111001001001011110101110011111101000011100001001100111100101101101010111110101111100111100011000011111100000000111011010001111110101010010011110001000111100011111100111001110001000001100000110110100010111...

Second Run Output

000000011111110100001000101000100010111010000010111100011110000010001010000111010001010001001111101010000100101001010111100000011100110011110101001000001110011010011110001110100101100100000110111110000000011001000110011111111011110011000100111101101110100100100010000001010110010000101001001110000100...

Third Run Input

Clara
101100110000011011000110111100101100111111101101010010010111111000100000101111000110110011011000000001001100110010111101100001111111101000101100101000011000101101011001001001011000110001100110111110000101011000001100101100100110010010110011010110011110110101010110010001000000101100110011101011...

Third Run Output

26 38
84 24
100 93
38 63
90 94
25 62
100 11
13 83
67 22
98 74
93 90
30 100
85 59
90 17
8 6
32 93
43 68
24 48
3 85
94 26
22 56
81 70
19 72
48 65
23 83
93 19
61 55
55 58
83 21
27 6
41 11
71 56
25 1
30 10
22 8
19 13
44 50
42 47
71 85
13 57
72 87
30 28
3 67
82 57
46 67
9 23
20 80
83 40
79 65
9 3
11 64
7...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #102:

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

First Run Input

Alice
110000011101100100100000111111010000100111101010100111100010110100111101111111110101000011110101011010111100001010110010000110111000111011000000110101100011101110011101011001100101101100011000110010010010111101010011000010011010000100100010111011010110110000011001001010000111101110011001001100...

First Run Output

110101100110111000100111011110110001110100100001111011000000111000101010111111010010000110101111010011010101000010010100101000110111110010011010011000011100010101101011010001111101110100110110111000100001001110111100111010100001000111010100110101100011001000111010001101001000010110110011001000111001...

Second Run Input

Bob
01011100000111101001000110010110101111010000000001011011101110011111011001111101111101011101100000101111111100111101110110010111011010111100100001101101010010001111001000101111010110000010100000101000111110011111001110101010001011001101000011001000011110000111010010111101100101111000100100010010...

Second Run Output

011010111110001000110011110000100011010011010111001111001100111000100010001011000111100110001010011001101101111111001101001110011100010100000111110001010001100101100111010000111110000101001010101011100110111111100110000111101111110000000010101010110001111111001001010000010010011011101001001010101100...

Third Run Input

Clara
110101100110111000100111011110110001110100100001111011000000111000101010111111010010000110101111010011010101000010010100101000110111110010011010011000011100010101101011010001111101110100110110111000100001001110111100111010100001000111010100110101100011001000111010001101001000010110110011001000...

Third Run Output

30 87
35 88
45 76
76 56
88 33
73 76
45 74
96 11
77 18
72 57
36 27
23 87
89 36
49 49
55 39
72 100
38 96
89 5
63 78
53 56
19 100
14 94
51 99
69 42
92 3
3 39
27 8
13 87
43 83
21 21
19 20
89 96
10 85
35 52
91 97
35 65
93 41
35 99
30 40
55 21
80 82
40 35
76 50
61 80
32 4
24 10
21 95
44 40
91 55
40 27
47 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #103:

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

First Run Input

Alice
100000001101101100011110001101011010110110000111000101001010100111000001101000110000011111101100100001110001100000000111010110100011101101000101011011010010000101000100101000000001011011111100100110101011001000010001110010010100001001011010100011011110100011101100110001101000111101111100001011...

First Run Output

100100101001001110110001100001111011000001000010101001111001010110110110111101000011001101011011001110010100000000101101001100000111011100111010000110100011110100110101111000010110000100110010001100101001101000111110111101110100100111110100010101000000101111001101110101010010010011001111001000100011...

Second Run Input

Bob
10010000100011011111000010101101001011110010111101011111100100101101111010101000011100010111000101000000100001111100110010011100101000000000010100100101000110001001111011001010110001010011101011001001110000011010001110001110100101001010111101100110110001100010011110111110100011010100101000001001...

Second Run Output

100010111100011000010110011000001110001101000010010000001001110010101010010110001001110101000101100101100011101001001101110101000100000001100000101110100100001110010000001011000010110000110110100010100101100101111000101111100001111101001101111111000110100010010001011111101011110010010000110101000011...

Third Run Input

Clara
100100101001001110110001100001111011000001000010101001111001010110110110111101000011001101011011001110010100000000101101001100000111011100111010000110100011110100110101111000010110000100110010001100101001101000111110111101110100100111110100010101000000101111001101110101010010010011001111001000...

Third Run Output

44 18
94 40
71 87
29 62
48 3
66 33
87 71
26 51
6 62
17 70
99 55
12 20
2 75
46 5
25 71
86 8
34 65
90 10
59 49
81 13
79 56
79 48
12 18
37 9
5 49
54 77
68 35
87 30
88 77
26 84
93 59
79 23
39 94
74 36
66 91
73 6
53 57
89 69
40 62
5 79
82 18
67 51
45 87
64 7
62 17
9 68
33 15
61 85
92 86
53 93
85 6
90 61
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #104:

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

First Run Input

Alice
010001110111100100111100010010110010110000100001110110011011000100010110010000111010011101101010101010011111100111111000101010010111110100000101000011011010000011000001110010110010000100011100001101010000000010001011110111110000010100111100111110111101100010110011011011010011011001000001011101...

First Run Output

010101110010010011110111000010111100111111101111111100011011010111001001000001001101111101000010100011010100100100011001100100100111111000000010001010110010001110101000000010010000011000011001101111011111000110001010001110111110001000110011010110001001000000110110111111111101010010010100000011111110...

Second Run Input

Bob
11000100100011100001001101000001101010110010111011010111100001100101111001100011100111010000100000101010000000101111100111010101110010111000011110100110011110011010111111001111010111010000010000001000111110001001011100010100101110110100111100101011011111101110000001110111000111000000001011001111...

Second Run Output

110001110011111011011101010011111110110011110111100000000010101010111001001101101110100111111110101001111000000001110000101010011000110110101111001110100111110101110000111100111000011110100101001010000101000001101110011001111111001111000111011111101000001110000101100000000001111101001011010101010011...

Third Run Input

Clara
010101110010010011110111000010111100111111101111111100011011010111001001000001001101111101000010100011010100100100011001100100100111111000000010001010110010001110101000000010010000011000011001101111011111000110001010001110111110001000110011010110001001000000110110111111111101010010010100000011...

Third Run Output

49 54
40 67
18 38
38 10
24 83
52 59
32 59
8 34
89 14
54 61
43 5
8 39
87 27
15 9
49 86
25 53
64 83
90 93
25 44
13 40
17 26
67 69
7 82
39 62
40 59
58 85
58 90
16 72
11 46
42 31
64 49
26 39
3 58
23 77
28 22
7 38
62 15
55 29
7 80
42 40
70 53
10 40
100 47
14 28
50 56
91 36
40 51
22 53
56 18
76 8
5 81
12 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #105:

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

First Run Input

Alice
110110111111000011000010100010100000000011101011101011000100000110000001110110010011101000001111111111101101111100111100000101011011001100000000010010101101110000000010110011010011110010011101110100010100111101101110100011011010011000111100101100001110011110001000101000101001110110100011010110...

First Run Output

111110001010010011001111100100100100100111000100110110100100100000001101010110010001100111011100010010110101101011110110010010011111100100010110001001100001010111010001110010010101101000001100000100100101101000101110110111110111001111100110101110011001011111011101110001010010110000010010001100110100...

Second Run Input

Bob
01010111111111110101010101001001000011111110010000100101000110010001000010011110010101011001110011000010100000010101001111101010111100011000010011111111101010000011010000111010101110110011000111000101100000110100110000101000110011001110100000100110010000011100101101000101000111010011101010001011...

Second Run Output

010101100101100110111011001110011010110001011100010110001001010101100011111011000101111101011000110001001010110001001100010000110011001110011010011010001111000001100010110101111010110001111101110111000011011100001000001001000100110010111010010110101111100101110001000011000001011101000110100011011001...

Third Run Input

Clara
111110001010010011001111100100100100100111000100110110100100100000001101010110010001100111011100010010110101101011110110010010011111100100010110001001100001010111010001110010010101101000001100000100100101101000101110110111110111001111100110101110011001011111011101110001010010110000010010001100...

Third Run Output

6 90
19 6
95 77
13 86
82 100
4 23
61 49
99 8
49 74
72 90
82 74
28 4
23 22
79 77
91 85
78 46
57 58
7 11
11 68
67 22
71 94
93 100
56 58
33 22
97 91
75 42
49 25
28 39
74 100
30 7
31 89
6 72
47 2
46 93
43 88
69 99
54 39
42 40
46 73
84 48
56 94
44 95
73 48
23 95
24 47
94 49
35 39
39 97
56 68
3 79
9 67
64...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #106:

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

First Run Input

Alice
111001010100000001001111011110101110000101010010100011100101011101000011010100000000011011100100110111110110000001010000111000010101010011100001000000010000101011011110101101010111111000111011000111001000011100101111000000110110111000001010011111101110101000110100100100101010010111010001001000...

First Run Output

110101000011001100101111110001111001110010010001100101000101001010001001101110011011011000010100111100100010111100101111110010111101100011101011110000010011110100001101001011101011101101010100110101001000110111011001011100100001101000010111001001110011100001010001111110111111001010010101100001100101...

Second Run Input

Bob
10100111010001000001111000100101010110011010110010011010000010100010100010100011010011011011111000011011010001110111100110010010110101011001001000000011000010100011011000000001011010001100101111011001000111011111101110001101010011111001101111100000001111011000110011111100010010011010110000110100...

Second Run Output

100100100110001110101010110001110011110001001101110110001000011001011100001110101000100110101111011011110110110000001111011100001100001000110011101110100000001010101110001110000110100000001011101010111110100110010110100111111000000111010011110001011001000010100001101001010101001001101100100001001000...

Third Run Input

Clara
110101000011001100101111110001111001110010010001100101000101001010001001101110011011011000010100111100100010111100101111110010111101100011101011110000010011110100001101001011101011101101010100110101001000110111011001011100100001101000010111001001110011100001010001111110111111001010010101100001...

Third Run Output

74 40
97 14
76 8
93 11
95 45
54 18
15 11
46 4
76 14
76 76
82 67
10 96
25 19
89 9
93 9
43 81
12 75
99 4
99 97
86 30
41 63
74 16
33 4
35 46
4 72
11 100
78 51
67 87
68 98
63 68
81 58
1 83
8 31
64 78
98 12
62 72
81 37
5 6
29 88
4 51
95 22
40 80
99 15
19 40
28 61
96 30
49 37
67 71
1 92
69 23
35 85
50 89
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #107:

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

First Run Input

Alice
010111101101110110101110110000110001101111111000101100001101111111101110001111111110011111011011010110001000000100111010100010001101100111000000011011010010101011100011001110000100010101000110010000111010110000000111011011111101111101001101011101100010101001011001001111100111001110101001001010...

First Run Output

011111101110000100110011010000010000100100000000100111110110100001010011110010100000111111110110111111001111101110001101100011000101000110100010101111001101011000110000000111100001110000000011001110111111011011000101101101100100100100111100011010011101011001010011000010011011111001111001001100000100...

Second Run Input

Bob
00011000001110000100000011100011010101001111010101111010111001001010001010110010010101111011110010110000110110010001011011110111000110101000110110000100011010100011011010001111011010100100110011111110101110111000100001111010010110001001110001001101100111101011011000111010100101010100111100110100...

Second Run Output

001001011101101110110010010110001011110111010001100101001001010111001110000110001100110011110100101110100011100000111100110110001101101001011101100101000100110000010001011001001101010001000001101101010110111000111000100010000001110100011101100000001111000011011010110001110101111111001001110001101001...

Third Run Input

Clara
011111101110000100110011010000010000100100000000100111110110100001010011110010100000111111110110111111001111101110001101100011000101000110100010101111001101011000110000000111100001110000000011001110111111011011000101101101100100100100111100011010011101011001010011000010011011111001111001001100...

Third Run Output

86 5
16 66
35 47
99 95
94 99
7 71
47 35
54 92
45 29
9 64
36 1
61 25
84 80
77 23
31 55
80 87
77 87
42 55
39 60
30 47
33 28
96 40
64 17
16 68
83 85
17 14
64 77
66 49
77 86
80 56
71 77
21 97
1 28
11 38
14 55
98 39
27 100
52 80
37 41
77 44
68 83
87 72
36 81
73 37
27 97
14 44
40 53
50 68
68 71
27 75
46 4...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #108:

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

First Run Input

Alice
010110010011100111011011110001011100011101000011111100000100000010001001101000111101000110111001111111010000100011110000111000010010110011101100100101100010110000111100101110000000000101101000010111001010110011001111010110101111001001100100010110011100001111010110101101010000001001001111100101...

First Run Output

011011011111101110111100101000001111100000100000010001110110100001011101100000010000001100010011000011111110011000011110000111010111010111001011000101110011111001101011001111110100000010011111101111110100111010100010000110001011001100001101001011101101000000111000101001010010100010101010101101111110...

Second Run Input

Bob
00000000011100001010000100001111111001101010100011001000001000010100110001010111111000010101110110011101100001100001111111111101110101110000001010010111111011011001011001100111000011000101010101101001101001011100111000110100001000110000111101111111011001010001010101111010010011111001100010100110...

Second Run Output

000110010111111000000011000000101111101001010100101110100001111011001110110010100001011000001111000101010000110110000010110100110000001110001100001110011110010010111000000100111110110000001100110011010000101111010010110010101101010110000101110000100100001001001111100100001100110011111001010110011100...

Third Run Input

Clara
011011011111101110111100101000001111100000100000010001110110100001011101100000010000001100010011000011111110011000011110000111010111010111001011000101110011111001101011001111110100000010011111101111110100111010100010000110001011001100001101001011101101000000111000101001010010100010101010101101...

Third Run Output

28 71
64 33
13 53
18 54
77 65
75 48
38 21
73 92
55 36
38 1
32 25
90 64
60 15
35 96
62 29
35 62
31 19
73 15
100 70
78 41
10 89
41 41
46 47
33 5
68 17
65 96
81 57
28 13
2 70
87 47
11 20
11 6
79 58
76 9
63 80
62 71
53 21
18 71
25 76
67 76
88 90
59 95
53 24
78 38
42 83
8 25
63 1
75 13
98 52
46 71
60 64
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #109:

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

First Run Input

Alice
011010000100111100100000110111000100110011100011111011011000111100110011010011011111000100010111011011110110110011001111101000001001111001001011001011111111011010110111011110011011111011110010011100001001100110011011011011101001110110010001110111111011001111000001000110000011011110011000000000...

First Run Output

011101110110010010111001001100111110011111001010001010100011110001011110010010011000100011111110110011111101010001100111011101101000011001001101110100010101011110001100101000001010101110010100011100011001011100011001000001010011010111000100011011101101110011011101010000110011110011001011001000000011...

Second Run Input

Bob
11110011000011110000110101011101100011000110001111011001011001001001110111011111101011101001011100001000111011011101101010111010101010011010101011000000010110110001101011111011110111001111000000101101000010010100110001011110011110000111000110011011000100001101001000000001001110101101010001100101...

Second Run Output

110001111010111111010110100111110000011010101111011100111111110100111001101110010000011011011100001000111101011001001101001001000100001011000101110010000000111101000111011010010100011101001001011101100000000100111000000100010000101000110110000110110100001110001001011010011010110110011001111101001010...

Third Run Input

Clara
011101110110010010111001001100111110011111001010001010100011110001011110010010011000100011111110110011111101010001100111011101101000011001001101110100010101011110001100101000001010101110010100011100011001011100011001000001010011010111000100011011101101110011011101010000110011110011001011001000...

Third Run Output

98 63
64 46
96 37
26 31
60 59
79 28
86 43
85 26
51 36
9 44
53 16
75 4
91 76
84 19
38 24
97 46
54 70
46 74
32 14
15 100
82 43
23 52
34 88
69 60
12 53
80 42
34 52
34 21
65 38
94 22
78 57
43 48
79 48
25 92
24 34
51 30
28 75
4 64
29 61
26 33
2 86
14 51
1 75
81 5
11 93
43 97
3 80
51 26
66 42
87 96
19 83
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #110:

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

First Run Input

Alice
101010110100101000100101000001100010111010000000001010001000110101111010111000001000010001100001110100000000010010111001010001110001110010010100000100001110110110111010010011100111000001110001101001011110001100001110001010011001001001111001100001101100000000011011101111001001010011000011110101...

First Run Output

101100100001010001111011100001000101100010001100101101010011011011100111011001101100000101101110101111011101010110110111001000010000011010000110101010100001100010001100000101100111000100110010110001010110011100000100001101001110011011101001111001010111011101100000010110101000000010001010110100001110...

Second Run Input

Bob
01110010111000010110100010010111001010010010111010101100001101111111101110110011110101001110010111110100010010010000100001100110101011010100100110001111010101101011111001010101101001001001011010010000111101111001101110110110011000000001010010100011010110111010101101001101100000111101011100010100...

Second Run Output

010100101101110110000011001110011101010000001011000010011110001000101000101011011111000101110111111010000100100001000101000011010101111001101100011000000111001110101100011111111011100110001101101000010111010101110100100111100010101100000110100100001001001010101001001001001011111110011100110100011110...

Third Run Input

Clara
101100100001010001111011100001000101100010001100101101010011011011100111011001101100000101101110101111011101010110110111001000010000011010000110101010100001100010001100000101100111000100110010110001010110011100000100001101001110011011101001111001010111011101100000010110101000000010001010110100...

Third Run Output

67 89
95 84
7 41
91 79
40 61
15 80
82 56
26 81
35 4
13 21
81 78
36 99
95 41
10 83
53 70
72 42
94 10
47 76
64 41
70 67
58 17
25 31
12 50
65 22
84 32
15 89
92 48
83 38
56 71
82 99
33 76
16 49
91 51
44 83
22 77
89 42
80 67
94 18
76 40
84 16
71 86
89 18
56 59
52 71
81 42
55 10
76 4
68 16
69 16
62 67
21 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #111:

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

First Run Input

Alice
010101010100010010000101010111000000010001000010110001001110011100010110101000111000111011000110001011000111011101100110001101001011010010100110111010000011011110001110000100100100110101101110110001001110101011101001000100000011101011001000111111110111100111000110010101010110000011001011010000...

First Run Output

010111010010100011010111000110011110111110100001010110010010011010101110111110010100101111000101000011011110010001011110111001010010111100011100000101100000000010101111101001011000011000111001010010000110101100011010100101010110111100001101111000011010010011000111111010111000101000100111000100001000...

Second Run Input

Bob
01100100011001110101110100001100010101110010100101111001110110110011100100000111111101010001111111000010110100100111000111010110111010100110101011110100110010110110100001001001011011000110110100001011101010101000111010011110011100000010010010110001101010001011010001001101001100010100100011111011...

Second Run Output

010100010101111111010101100010111010111010111010100100011010001110110011101100100101010101000010111011001000101010101101111011100110111010001110010101001111111111011001000101010110010010101000110111101010010110000001000111100011000100000011100100111111000101001110000111011000101110000010000101110101...

Third Run Input

Clara
010111010010100011010111000110011110111110100001010110010010011010101110111110010100101111000101000011011110010001011110111001010010111100011100000101100000000010101111101001011000011000111001010010000110101100011010100101010110111100001101111000011010010011000111111010111000101000100111000100...

Third Run Output

64 62
78 2
50 47
20 27
83 79
22 98
87 4
44 85
29 30
6 54
30 35
34 59
45 54
94 10
67 83
13 31
67 74
83 43
72 64
54 66
28 3
55 27
88 27
88 16
36 56
80 79
8 2
97 94
85 11
95 71
79 17
1 15
74 2
34 32
6 12
45 37
37 79
36 6
79 26
68 67
98 87
73 72
100 95
72 1
43 29
41 42
39 38
79 47
76 99
15 89
19 6
52 38...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #112:

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

First Run Input

Alice
101110010011110001010110000001001110001111010010111010010000101101011000000111011010000111011101111000101000000101100010001001100100110010101100010110101001010110100100101100111001011101110111111011100011010110001010000101101000001001110101000100001101000000001110010110110100010010010100000100...

First Run Output

101000010000001000111001011010110110101010110010110110001001110010111011100101010010101001010100011000010010000011011110011111110101101101111111100000100011110000001100010000110001111011010111001100101111111010101100100001000000110010011101010010101010000001100010110100100101111001101000101011110000...

Second Run Input

Bob
00110100110011010100100001110110001111111011011110101010101110000101011110111011100000110100001101111011100100010100110110100010110011001000010010111100001000111000010001001100100101110001011001110011010110110010010011110100001000001011111101110110001101010101110001111000000010011001101110010100...

Second Run Output

000101100010110000001101100111000011100010001110010110010000010111000100100100010110101101100001111110001011011111010010011101110110011110000100101001001011100010111011000110011110110100111110100011101010100110010000110100010101111000000000011011001010110110001100001100011001001101110011000010110110...

Third Run Input

Clara
101000010000001000111001011010110110101010110010110110001001110010111011100101010010101001010100011000010010000011011110011111110101101101111111100000100011110000001100010000110001111011010111001100101111111010101100100001000000110010011101010010101010000001100010110100100101111001101000101011...

Third Run Output

24 92
48 37
71 38
77 98
80 68
3 55
62 84
80 13
15 52
76 89
45 62
69 14
63 67
9 13
53 2
29 91
95 43
39 65
80 42
1 26
58 41
87 35
56 95
49 7
40 10
88 96
48 57
27 12
77 7
54 57
40 68
66 52
66 44
59 73
76 100
57 37
75 80
32 44
43 28
88 42
18 27
53 57
50 46
93 26
67 29
73 60
78 28
85 11
73 26
7 70
8 7
91...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #113:

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

First Run Input

Alice
110010101101101111001011100001010111101000011110101001000011010100100000010000111011110101110100000001111010011011001010100000011100111101001011001011110111011001001101010001111111001111001001101000011000000100000010000001101011010100101001111111110000010110110110001000111100111000011000010101...

First Run Output

111110100000010011010111010001111011100110100011111111110110011001100110110000100101001100100011110110110101101111001110010101010000001010000001100111110111011100011001101110011010011001110101010101110011100111010111110100101101111110100110110001011011110101011100010011101010010101110111100010111110...

Second Run Input

Bob
11001110111000001000011110000010110100100010101111001000011111010001010111011000000001011101111111001001011110000111001010001111101100101000001101111111100110101010110100011001000000110111101111010010010100001011100011110110100000010010010001000000011110010010001100001111110110100010010001111011...

Second Run Output

111110010010000001101101011110010011111100111000111001001010001010011011111110100011101011001101100110011101100100110000011010101000010101110110101010000001100000101011001101000010011110010011100111110111000111100101001101101001001110100000100011110101101000110101010100001110101010000011010011111011...

Third Run Input

Clara
111110100000010011010111010001111011100110100011111111110110011001100110110000100101001100100011110110110101101111001110010101010000001010000001100111110111011100011001101110011010011001110101010101110011100111010111110100101101111110100110110001011011110101011100010011101010010101110111100010...

Third Run Output

20 98
55 21
22 85
96 54
22 12
93 46
98 34
79 32
42 84
71 51
36 3
29 30
11 86
72 49
7 39
5 62
13 28
48 88
23 75
68 70
44 26
49 8
49 12
18 97
34 10
6 6
64 26
66 34
23 92
5 66
47 31
76 27
85 9
62 99
91 65
92 26
44 5
41 100
19 33
15 19
69 43
16 57
89 92
93 27
72 36
72 57
94 47
35 20
52 42
50 28
57 29
20...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #114:

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

First Run Input

Alice
101100111101110111110000001000011101111000110000000100101010010101011101000001000010111011100110111110100111100100101001100011010000000011110110111001100111101001100000010100010010101000100010000101010000011111000000100111110000010101101010111101000000111110100111011101111001110110011110100110...

First Run Output

100110100010110010101001100001111010100011000101111011111011000100101110001111000111001011111001001000110111100011011110110011110010011100110100110001001000010111011110101100101100010111011110111111101010101000001011010100110100000100010001111101110101101111111100011010101001100101100001010001011101...

Second Run Input

Bob
11101011001100100111010001111000000010101100100101100110110001000001100100101110101000101000100000011011110101110100111000100111100010100100100001100111011011110100101101001011001000101000011010101100000101111000100000010101101101100000010110011110101000100000101101110101111010110100010011100000...

Second Run Output

111001110010011001001011111001110011011101100111000110011110011100011110001011010010100010101010101110110111111011110101110001111000001010100000101110001101101000100111110111111111000101110111111111000111101000100111101110001101011010110110000111011101010001110011101110000111010010001100111101011000...

Third Run Input

Clara
100110100010110010101001100001111010100011000101111011111011000100101110001111000111001011111001001000110111100011011110110011110010011100110100110001001000010111011110101100101100010111011110111111101010101000001011010100110100000100010001111101110101101111111100011010101001100101100001010001...

Third Run Output

83 55
65 70
35 99
30 81
53 97
13 96
49 24
55 78
25 62
20 61
33 16
63 8
82 57
80 10
90 21
71 41
36 97
5 52
32 84
40 75
100 64
74 49
52 76
57 95
29 60
92 69
11 20
84 50
46 5
22 9
59 25
65 5
36 31
88 2
40 1
88 54
22 89
31 87
97 65
58 83
70 59
57 43
4 50
9 41
4 69
20 4
25 91
12 66
65 52
24 82
76 99
97 4...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #115:

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

First Run Input

Alice
001010110100001000010100101111101000010110100100001011101111100111100011111011100101001101001101011110001101110011101011100010001111111001110100100111101110011010101000011001010101111010010111001110110110011101111000000100000100000110010111111001110011110100110100100110000111101000110101101100...

First Run Output

001100001110111100000011110001010000110111100111110000100011011100100000011111100100110101101111101000100000110111001100001111100000100111010001100010000111110101100000101000010101010101100110000110111111000111100111000101001010100110110001101010111111011101100101100011100011111101110000010101100100...

Second Run Input

Bob
01110000000010100111101001110011110101011111111110001010001100100101010101111101010100000111001101010100100000000000101001001001110110100010010001011100111001000001100011011100110111101110101000100101110110110011111100010001010110101001001101100111110010010100001111000010110011010001010100100011...

Second Run Output

010001000101010100110110010011100001011100000100111001010101000111110111111010000011010100011100000111111000110101100010010001111101111100001100000100101110111001111001100101010101010101101100110010111010110110001101110100100010101011100100111011101110011000001001001000000001001101111100110110010110...

Third Run Input

Clara
001100001110111100000011110001010000110111100111110000100011011100100000011111100100110101101111101000100000110111001100001111100000100111010001100010000111110101100000101000010101010101100110000110111111000111100111000101001010100110110001101010111111011101100101100011100011111101110000010101...

Third Run Output

39 95
28 26
75 83
77 8
17 28
71 11
29 89
82 3
59 88
26 90
45 38
80 81
62 9
79 32
92 23
55 93
27 20
36 87
35 65
26 41
89 19
47 62
48 30
38 15
12 53
75 92
8 44
35 60
22 40
45 86
7 96
42 71
60 24
89 66
43 63
83 69
25 30
18 69
41 86
64 74
80 21
95 15
24 26
13 78
36 28
11 16
41 13
35 14
57 88
89 18
68 72...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #116:

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

First Run Input

Alice
000001001111000110100011100000110001001011000111101010100100110000011001100101100101001100101001110010101101101101111111001111101110111010011011001011100001101010011110110011101010010111101110100110110110101100011001100000101001101000101100001011001001101100100011000000000110000111111101011101...

First Run Output

000110000110011001010010000101000111010111100110000110111001000000011001111011110111011100010010100000011011111010101111000111100000101110010111100100100110111000001111110000111011000010110111110010010010101010000000011110011110110100000110101111010011011000100110101000100010011111111100010101110101...

Second Run Input

Bob
00000100111101110010100010010110111010000011100000011010010101011001000010000100111010111011101100011100000110001110001001011110110011100101111111110001101110101100000101111101011010110101010010110101100111110111001000100111011110000100000011101100101110000101010111101111111001111101010001111000...

Second Run Output

000100101111110101101001110001111110010001000010000101110001000011110101011111101100000111100101011101010100101111111010001010010001001111010011000111011101010011101010011010101001101000000100011110000010011110100101011100000011111110100101011110001100110100001110111001110000100101111110101001110110...

Third Run Input

Clara
000110000110011001010010000101000111010111100110000110111001000000011001111011110111011100010010100000011011111010101111000111100000101110010111100100100110111000001111110000111011000010110111110010010010101010000000011110011110110100000110101111010011011000100110101000100010011111111100010101...

Third Run Output

93 30
32 22
31 8
60 88
52 91
77 19
87 8
15 15
93 62
48 78
72 87
93 62
75 38
68 45
94 33
91 79
31 45
19 61
5 20
30 15
60 53
83 31
36 60
58 37
85 27
88 58
91 8
39 97
58 60
17 71
16 42
13 3
64 72
73 93
67 30
73 23
52 22
58 42
28 14
44 82
16 83
53 28
95 52
92 87
53 36
86 58
54 46
86 24
16 67
33 94
57 54...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #117:

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

First Run Input

Alice
111001000111010101110110100001000101111100011100001110110101010110010000010010110101010010111110001110101101010011110100011110011010011001010100110101001101010101101000001010111101100101010011101010101101010100001010100100011000101000111101001001111000111111100011100101001101000101001101110000...

First Run Output

110100101111101011001101111011100111111110000001111011011101111111000010101101010111000000110011110001100100100001010011111010101110010111101011010111011010101101010111000110101110010010001010010000000001000000010110101001001001101111101110010000110110010001100011101111111110110011101000101001100101...

Second Run Input

Bob
11000101111101010110010011111011010011010111110100111111110000100100100111101101001110001001111110101101110100111101001111000110111111111110100110110001111011111010100110001101110100110010110101100000110111011001011000101010100100000010111011110010001111001101011101110100110011101000010110011110...

Second Run Output

110101100011100010101001101111001001000100011100000011100000010101000000111000011100011000100100000001001000011101011010100011010100101001001110100000000100101011111100000110001110011100011011010101001110110000010010101000111100101110100101010011011110111010100010101100111011101110001110111011000111...

Third Run Input

Clara
110100101111101011001101111011100111111110000001111011011101111111000010101101010111000000110011110001100100100001010011111010101110010111101011010111011010101101010111000110101110010010001010010000000001000000010110101001001001101111101110010000110110010001100011101111111110110011101000101001...

Third Run Output

54 48
69 35
3 47
80 93
30 52
61 9
34 84
26 68
39 9
11 63
44 50
54 5
59 75
90 10
5 24
8 4
87 25
23 81
73 55
14 73
87 69
54 58
85 22
5 97
53 98
46 88
44 91
2 50
93 21
5 90
95 31
30 40
78 93
52 63
99 51
74 5
17 15
28 6
10 33
19 63
32 49
95 2
44 4
5 81
53 3
42 17
69 53
64 32
37 61
96 2
99 24
59 34
25 10...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #118:

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

First Run Input

Alice
010110100010010100101111010001111100000111001101101111000010100110011110110100101011100000101101111100000000111110011111011100110100111101000011001001010001100110001101111000000001000011010111111111111010101011100111110011111001110001101110100000100110101010000101100000100010100101011010010111...

First Run Output

011001001001011011111001001010000100000011100011001110100111110001010010100100110111000000101110000101000100111011111011100000000100110011010111110110100111100101100100000010001100100000101111011101100011111010000000011011110000111101101011110101001110010000100010001011000101100110111111000000101100...

Second Run Input

Bob
11101010000100111000110000100010010110010000101111011000011110011100010100001010000010001000000000001011001001011000111001011111001001111100100101100011001011100011101110000111101010000111011011110000001111011111111010000011000101111111011011001110001101011100011100110010000010100111000011100111...

Second Run Output

111010111011000011010100010100100011010010011111100010111111111000010011001101000000001111100011100000100001011001110101100110110110100100101000010101001001000000011001011101100010001101001100110110001010101100000100100001111101001101100010001110000000000011101011101001101001101100011101101000101011...

Third Run Input

Clara
011001001001011011111001001010000100000011100011001110100111110001010010100100110111000000101110000101000100111011111011100000000100110011010111110110100111100101100100000010001100100000101111011101100011111010000000011011110000111101101011110101001110010000100010001011000101100110111111000000...

Third Run Output

65 35
30 60
81 56
52 57
84 57
39 94
64 73
64 58
47 18
80 88
14 23
42 13
91 39
66 21
89 34
39 96
38 34
38 60
63 19
25 57
72 43
85 97
91 84
50 27
98 53
1 33
42 24
41 29
46 6
28 11
70 51
78 24
64 97
100 34
100 85
40 21
65 22
81 43
8 46
72 53
44 27
71 41
85 24
40 50
1 56
91 100
25 25
55 88
58 27
6 97
84...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #119:

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

First Run Input

Alice
010001111001010001000111101001100111011001000101110100010001010111001100000011010101110100010011000111001000001001111111101010100111110101011111011110000001011000010111111100101100101001000011011100101111100101101100110110000011000101101010000100011010111001000111010101010001001101111011000011...

First Run Output

010000011110010000000011100110000011011111111000110110101101001100010000000100110000010001010001101110111110111000001111001110000101110000001000011101101111011010000000011100001011000110010111111100011000010100100111111110110000001011100100011000010011010001011000111011111001100011111000111110000001...

Second Run Input

Bob
10000111000001100011101100101111000100101100011011011011000101110100100101101010010101100011101101010100011101001111010010010010111110000010001100100111011001001000011001100110000101111001011011010011110011001000010110000010001111001101100001001101001011010011100110111000100111100100000110110101...

Second Run Output

100000010100010000001001000111110010001010100011011001001110011010010101000111111100011111101001000010011010010100100110011010111001010111010100010111100010001010011100010101100011110100011010000011101010000100110011000000011000011010001101001110011111111000110000010010111001010001111001110100000000...

Third Run Input

Clara
010000011110010000000011100110000011011111111000110110101101001100010000000100110000010001010001101110111110111000001111001110000101110000001000011101101111011010000000011100001011000110010111111100011000010100100111111110110000001011100100011000010011010001011000111011111001100011111000111110...

Third Run Output

2 36
34 54
61 17
50 31
19 13
37 44
40 58
63 1
30 86
31 66
93 31
18 31
77 59
60 50
29 32
51 24
12 86
6 77
10 51
76 51
33 4
52 68
77 11
2 25
20 43
33 12
30 32
58 13
54 86
63 54
68 53
55 73
9 69
67 59
93 69
26 76
68 90
57 67
36 2
44 73
36 85
71 5
76 23
65 96
2 65
36 32
80 60
66 67
5 33
31 13
58 45
25 8...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #120:

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

First Run Input

Alice
010111001011010000100111101101101111100011100110101111101111011101100100010101001001100101011010001000011010000011110010000110101101110000011110010010110010010011000001101101111100001010000000010100001100011000100101100001001101001000010000011011011011110111000111100011100011101011111000110101...

First Run Output

011000100000000111000110000010011000111101000010011111001000101010000001111010010101100100011010111100000000000011110011000011000101000000100110010011001000100000011000110101000000100100110110111010010000011000101011001011010000000010000011010110101100101010110111000110101000101110110001110001011001...

Second Run Input

Bob
11000000010101100101011011101101011111000110101001010111010010110110101011001100001011010011010100110110111100100111110011101100100111010111001001010010111001100010010110101100100011001110000100110001100011010001110111110110101010100001011110111110001101110101011000010111110010011010001101010010...

Second Run Output

110101110001000001111000101010111101101110101100001100111101111011100101110100110000011100101101011101101110001000111010011010100101000011100101101100010100110111011011100011100011111110010100100011001100000101101100011010100011110011000100000111111101010110110011111100100011010001110000001101111111...

Third Run Input

Clara
011000100000000111000110000010011000111101000010011111001000101010000001111010010101100100011010111100000000000011110011000011000101000000100110010011001000100000011000110101000000100100110110111010010000011000101011001011010000000010000011010110101100101010110111000110101000101110110001110001...

Third Run Output

96 46
45 48
27 78
14 53
11 8
75 5
63 41
71 66
66 97
95 37
33 41
69 11
70 26
63 99
95 49
99 28
14 92
55 56
87 93
27 31
39 5
83 1
88 74
58 72
2 12
40 23
97 96
59 12
18 33
62 90
19 16
90 60
84 80
29 95
97 12
84 70
15 52
42 68
36 29
76 95
26 75
100 70
40 6
95 90
97 65
55 74
43 40
21 81
5 14
24 31
14 50
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #121:

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

First Run Input

Alice
011100101001001010111110110100110010100000100110110000000010010111011010101111011101110011101000011111101011010011001101001010010111011011110001011100011110010001011100010011111011011011100101101000010101010100101001101101100000110101011110001111101001011010101000010100110111111111101010001001...

First Run Output

010011111110010010101010011001100100101011101001001101101011100101100010001010111001010100100010100001100000110101100001100011100010001010001000101001001100111110010101101111001101101100101110101000110101000001111011111010111101101110101100111100001101000100010111001101000010000010111000000100111111...

Second Run Input

Bob
10101001001110010101000001001010010100111001001010110101101011111010111101011110101101111100100011001100100011001000000101100110100010110010011100100001001001011100100111110000101100111110010011010110100001010010101100010100101000011110001100111101010101011001001101011000010110110101100100010001...

Second Run Output

101001001011010010011110010100110011110101010000111001000100011101010101111010101001100000011100011000010001111100111101001000010100110010110101100110010001001001000001111111110000110110011100001001110010010100010000010110000001100010001111010001000001100111111000100111111010001011110010010000001001...

Third Run Input

Clara
010011111110010010101010011001100100101011101001001101101011100101100010001010111001010100100010100001100000110101100001100011100010001010001000101001001100111110010101101111001101101100101110101000110101000001111011111010111101101110101100111100001101000100010111001101000010000010111000000100...

Third Run Output

44 78
61 68
74 87
89 49
30 67
46 9
87 47
62 85
70 21
28 2
36 49
87 31
30 68
16 60
43 28
42 89
15 32
77 18
88 24
76 60
20 47
69 28
56 16
71 58
16 11
29 8
64 71
79 72
65 8
80 60
12 46
13 92
74 94
15 83
6 41
58 7
82 57
74 25
26 73
2 64
59 1
38 61
74 71
51 20
32 60
2 67
46 10
29 16
98 49
95 46
56 70
45 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #122:

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

First Run Input

Alice
011010001111111101011000011011111110010100010110011110110010101100111011101011100001011000110111000101101101010111001001010110011101001101110001110111110100000010100110101111000110010011111010010001001100010000000001110001010111101000101011101111011011100100100010100100101000011111000101010010...

First Run Output

011101010001100101101110110011001011100111001111111001010011100001111000110010111100000001110111111101011001010100110000010000011111111101110111011111010100011110100001110000100111110111100100011110110010010100111110101010011011010010000010011011101110100001101100011101000000110011010101011101001000...

Second Run Input

Bob
11011001000001000110001101000111010101111111100100110011001100100000110001110001001011000000010101100100111010010101010011001111100100011000011000011110000000010111000110000100101110000111101001111101001001001101000110010000101011010001111110111010100010011111101110101101100100001101110110001111...

Second Run Output

111001000001001010010000010110111011001001011100000011010101101111110110001000000111011001001011000000000000111011010011100110100100001100011001100010101010011111110111100101111110111111011000111001010010101110011011001100010100100001111000110010100000100100010010101111001000011001001000011000111010...

Third Run Input

Clara
011101010001100101101110110011001011100111001111111001010011100001111000110010111100000001110111111101011001010100110000010000011111111101110111011111010100011110100001110000100111110111100100011110110010010100111110101010011011010010000010011011101110100001101100011101000000110011010101011101...

Third Run Output

71 15
50 20
93 60
76 31
68 46
91 4
92 53
12 12
23 34
28 53
79 47
10 16
1 32
46 18
96 16
67 22
35 92
20 80
91 19
24 19
32 68
93 57
7 66
8 88
33 27
82 93
71 69
50 75
91 79
4 68
98 10
42 63
20 65
59 74
75 17
54 13
59 89
66 96
100 15
54 13
47 51
78 98
13 2
16 87
78 95
19 87
71 94
79 74
81 88
57 54
91 78...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #123:

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

First Run Input

Alice
100101010000110111010000000000010101011101010011000000010011000010101100111110000000000101110010101011111001101010001100011000111110100101111101001011100010001000011000110000001111011110101011001000011010010001001111101001001111000000011010100110100101100011010001110011110101001000001010100101...

First Run Output

100010001011010110100001100100111000110010011000001001011101011100100000111000111000111101000010011101010110011011100011101100101011010000001000001010110000000010000000100110101110100111000010111100110101001100101110010011000100011110101000010011000110101010000101100101110110101010110100101111010100...

Second Run Input

Bob
11110101101101000111101010001111000101100001000010101011101001111010010010101000001000111101111011100100100110100010000100100010001110000111001001000001101110100111000011010001010110111110101001011111111010000001010111010010100111011111001000101100101001110001000101011100101110001000001111110100...

Second Run Output

110000001000011001110100010000110110110100111001100001111110100100100101110101101111100010100001110100111100101000101100100111101100011111110001001000110011110100111000001101000110101000000110000101111011110001011000011001111010111011001001111000101110010001111000001000010100111000011111101000011111...

Third Run Input

Clara
100010001011010110100001100100111000110010011000001001011101011100100000111000111000111101000010011101010110011011100011101100101011010000001000001010110000000010000000100110101110100111000010111100110101001100101110010011000100011110101000010011000110101010000101100101110110101010110100101111...

Third Run Output

47 50
82 43
19 58
16 9
99 16
82 64
83 27
19 28
28 12
58 16
8 62
38 29
12 21
71 67
84 17
42 47
55 85
23 44
64 8
1 31
28 90
11 77
6 16
64 61
12 34
70 55
36 28
98 84
2 79
89 26
1 21
90 40
57 38
49 80
57 2
100 75
49 40
2 31
73 83
87 51
19 84
17 90
99 98
50 49
58 81
51 61
23 98
28 62
6 21
5 16
87 69
41 9...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #124:

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

First Run Input

Alice
111011110000111110011000101100110110011101001001000111100011100100100011011011001011111001101111011001011100001110000010111111000101101000000011100111000010101110011001101110110000101000001110100101001010101010101111100001110010101111011111001110010011111111010001010100110101111101100110001010...

First Run Output

111010000001100010000010101100110100010010110010011001111100101100010110110001010110101100011010100100010001100111000101011011010101011010100001111101101100010000100001110100100010010010010001010010010001011011110000001010110101101001001110100100110011000001111111110110101101111010000110111010100101...

Second Run Input

Bob
00010010110100011110001011000000101110001001100001011110100000010100101001001101010101110110010000111100010000010101001010101011011111010101100100110010100001000111000001010001011110101100111011001110011100011110010001001010011010011000000101000100011111000010100001101010111011001100101110111011...

Second Run Output

000111110110011100110010110010101001010010000110101110101111010101111000110000101111101100110110110011011111011011110101000101110100101100100000000001111011001111101101100011100111100111011101100011111111001001010010011101011100010100000000001011100001110101001100100011111111000000010001101000110000...

Third Run Input

Clara
111010000001100010000010101100110100010010110010011001111100101100010110110001010110101100011010100100010001100111000101011011010101011010100001111101101100010000100001110100100010010010010001010010010001011011110000001010110101101001001110100100110011000001111111110110101101111010000110111010...

Third Run Output

69 100
9 59
62 59
88 26
90 25
30 9
12 57
64 37
63 15
97 7
23 16
59 24
57 1
23 42
30 12
22 63
52 66
80 75
71 45
38 97
96 31
21 91
69 90
74 9
86 8
68 8
81 29
75 36
93 21
63 52
68 16
30 5
5 2
9 1
3 49
9 94
83 19
65 38
20 50
5 62
70 41
58 80
25 38
97 42
22 46
32 94
25 41
35 11
2 22
62 85
44 6
45 95
45 2...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #125:

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

First Run Input

Alice
110000010001001000000000000010110011000100101010010110100101010100100011001000100011000110100000100101101111010010100100000111111111101101101010101100100001101001001101011101110101011110000100011000111110010001111100110001110000110000001010111101001111110000111011101001110011111110001001100011...

First Run Output

110000010000110000110011100111100000000001101101010111111010110111110001101110100001001000000001101011111101110000111010000101110001101000101001010111101010110001010010001011100000110010001110101010110110001101001100111010111011101111011101111010111011010001000111000000001100100100100010110001111101...

Second Run Input

Bob
00011101110110100110010100000100101110001101010100010101101010000001110000011010101101101000011100010101001000100011010010101101011010010000101000010001101011011010110011101001111110011001110011110001001100100011101100011001111001001010111101101101110100000100101111101010101101010010010011000110...

Second Run Output

001100100000010101000011100100110000110001010100100000001100011001001010111001100111001110001010110110110101001111001000101001000011110100010110010101110100111110001100001101010000001111011001100101001000101101110010001001011000010111011110001110111011111111011001001011101110010111011101100110101000...

Third Run Input

Clara
110000010000110000110011100111100000000001101101010111111010110111110001101110100001001000000001101011111101110000111010000101110001101000101001010111101010110001010010001011100000110010001110101010110110001101001100111010111011101111011101111010111011010001000111000000001100100100100010110001...

Third Run Output

34 83
33 79
32 100
44 63
76 73
58 4
41 7
86 78
73 96
75 5
58 69
98 92
19 68
61 6
47 67
49 39
90 17
23 95
79 95
32 5
93 22
28 18
49 50
46 39
68 84
28 94
87 64
32 46
82 48
79 44
20 95
28 85
38 17
82 31
98 47
72 30
11 78
38 62
86 51
90 79
2 42
90 64
50 51
38 81
42 57
50 39
3 28
45 93
28 78
32 46
93 30
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #126:

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

First Run Input

Alice
001010011011110000101000011011011100011010101011101101001010001010111000101110001010011010001000011011111100000011011110011010111101000001011000110100101000001110001010100101010010100100101010001001101101001000101101101111100010111110001100111011010011000101011110110100000110010011100101010010...

First Run Output

001001001011100001001101000111110111000000101101000011010111100101111000101111111111110011001001001101001100101101100001100010100010001011010111000000101111111000001011001111000100001111100111011001111100010100000010011011111110101100011011010101011100000001000100010000000100101000001111111111110101...

Second Run Input

Bob
00001100001001111011011011011111100100111001010010111001001100101101101110010011000110011110011111010111000001011110110001101100110100101111101011001111000000101000011110000110001010100101111001101010001111100011110101011110000011111110110010111111000011111100111110001000011101000110001111101010...

Second Run Output

001011001001101011101101111010011001011001011100101011110000110111101101100000100011100101001001111011100100001001101011101110101001010001100011000100001011111101010101100001110111010111110101000100101110100110000010111100001100000000001101110010000111101001101011101111001001100010010101010111010100...

Third Run Input

Clara
001001001011100001001101000111110111000000101101000011010111100101111000101111111111110011001001001101001100101101100001100010100010001011010111000000101111111000001011001111000100001111100111011001111100010100000010011011111110101100011011010101011100000001000100010000000100101000001111111111...

Third Run Output

28 46
1 92
7 48
18 100
78 62
62 18
77 77
8 90
27 53
23 89
44 24
53 56
56 9
64 48
6 65
20 97
41 52
56 95
55 33
85 29
43 12
63 54
90 89
37 12
75 85
23 98
89 62
63 95
93 24
56 74
16 57
58 41
90 52
19 39
73 77
63 33
9 93
2 59
95 44
61 64
90 53
95 92
12 56
2 21
96 49
70 53
75 25
68 49
78 88
10 72
35 21
4...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #127:

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

First Run Input

Alice
100100101000101101011101111110011111001000100001111001000011101100010100101101010110100110101010001101001011110101010110000110101111001001100010001111100111000010010011110000111010101101011011101010001101110001011100010110011011101111001111100100000001000110111000011010000001010101101001100101...

First Run Output

100001010100011010100101010110000101001010010000110101000000100111111000011000011011100011010011110111001110110011111111110110000001100100010110011111100110001000010010010000001111010101001111110111011000111011010000111111011011110111001011001010010010001111110001011011110100111011101111010001100011...

Second Run Input

Bob
11101000001000001111100101111101111001101110010001100110011111110000010000100000110001000011000001001000001101000011101000010101010100111100000011010101110101100001100110011001000100110010000000100111111111100100010001000000100100100011110001110100000000110000010011101101110110011011010100010010...

Second Run Output

111011010110100000000011110101011010100110100101010101010001110111011010100100111001100001111101001011001010110010110001111111001100010111010010100101010011001011100000100010001010010110111110000001111010010111111110010101111001111011110011011111110000110111101000011011101101000000110010110011011110...

Third Run Input

Clara
100001010100011010100101010110000101001010010000110101000000100111111000011000011011100011010011110111001110110011111111110110000001100100010110011111100110001000010010010000001111010101001111110111011000111011010000111111011011110111001011001010010010001111110001011011110100111011101111010001...

Third Run Output

5 55
1 33
33 71
27 33
80 80
89 52
93 53
87 96
44 43
19 62
78 51
46 17
99 63
3 54
72 31
86 60
64 77
71 86
71 17
34 21
81 24
59 67
20 16
65 83
2 12
23 70
4 92
99 19
96 37
22 22
9 86
60 84
43 95
69 29
35 37
35 47
88 34
68 11
10 7
28 29
41 88
5 8
29 90
66 97
6 75
43 19
13 52
20 56
58 43
17 24
25 67
34 1...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #128:

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

First Run Input

Alice
011111011001100010010100111100111001110100101111101110111000111111001100001100110000100001111000101101011111110010000011010111000111000010111001010111001101110011000101001011110010000001111001001100111111011000011100110111110111101110110010010001011010000111101110111010101111100000110101000010...

First Run Output

011011101001000110010101100000011010011110010111001101011101011111000010110010111111101010011001111111011111001000110000100110110010010011000100001110010010101010010011000000110011110111110110101010101010101001001011000011100011011010110100001101011101100010011010011010001010100010010111101100100100...

Second Run Input

Bob
11111101100101010110101011011110100101110101010111011100010001010100101110110001000010001001100011111100001101010001101001010010101100101010001100010001101111100011011000110000000101110010011001101010011111010000000100000110000110011110010011100001101011010010011000100100011100111110100000100110...

Second Run Output

111001010011001000110010100111110110111000010010111010101111001100110110000001110001100110101110011011011011000001100111000101000101001011110101101111010001110001001101001111110011110001111111100101001011011011011010011011001010010100010100100100010101000010010101111001000101110100000010101000110110...

Third Run Input

Clara
011011101001000110010101100000011010011110010111001101011101011111000010110010111111101010011001111111011111001000110000100110110010010011000100001110010010101010010011000000110011110111110110101010101010101001001011000011100011011010110100001101011101100010011010011010001010100010010111101100...

Third Run Output

70 97
13 84
11 74
95 24
56 6
21 14
82 81
85 100
34 82
32 93
12 93
95 39
55 49
97 34
24 61
22 70
48 93
44 94
56 9
7 80
84 48
9 99
89 77
23 97
53 17
37 65
34 67
8 11
75 70
55 17
26 64
63 44
21 55
24 99
6 35
13 27
60 20
42 76
2 68
14 97
100 41
65 90
38 75
30 70
44 37
26 61
34 64
79 38
18 6
60 51
22 88
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #129:

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

First Run Input

Alice
110100001110100011101100100010110100111111110000100101001010001010010000110110011000011111100111110100110110100101010101111101000011100000000101110011001101010001010011011110000011000011100001000010101101011101111111110110000001110001010001010000111111010010010010110111000101011000001000100111...

First Run Output

110110101001111010011000111001110101110111101111111000110110111101010000100001011100110010100110110100100000011101011010110101100110011111000010001011100011000000001111101000110001011111010011100111001100100001000010101010000101111100100001000111111101011100010011100100010010001000001000111010011111...

Second Run Input

Bob
10001010011000100001100010111011110000111110110001011011010111101110101100001000100101011000100100110001110000000010000000010101000011001001110001111001010110100110111100001010110010001001001001100010110011000000111010000001011010010001100100100000100101010101001011100000111011100011000011000011...

Second Run Output

101100011000000101111100011001001000001101100000001010001110110010100011001011000010100111100011100001010111111001011000010001010111011100110111111110010101111110000001000000001001100101010001100110101010101101110111111111100110000011011111101101110101000110100111111001101011001111001100100001101000...

Third Run Input

Clara
110110101001111010011000111001110101110111101111111000110110111101010000100001011100110010100110110100100000011101011010110101100110011111000010001011100011000000001111101000110001011111010011100111001100100001000010101010000101111100100001000111111101011100010011100100010010001000001000111010...

Third Run Output

28 54
77 67
57 56
72 86
36 38
18 5
91 41
82 99
40 74
42 6
3 66
36 100
59 6
68 81
17 65
25 45
70 8
48 72
89 12
98 48
15 40
66 65
99 14
6 83
26 30
12 74
90 81
20 49
91 50
95 26
73 17
18 11
82 3
10 47
33 61
22 42
44 38
6 70
49 18
23 16
98 58
12 70
59 51
23 32
29 66
89 41
91 52
94 39
30 17
11 77
89 36
7...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #130:

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

First Run Input

Alice
101001100101001000000111100000111100011101001001100101110001100001100110001000010011010010000100110111110111001000110011110001100101111011011101011100011000010101010010010110110111110100111000111111111100110000010101100000010110010011001011110100010010011111101011001011000100110101001100110000...

First Run Output

100100000011011111101001000001101010010111110000100000011000111110000001010011010001011000011110000101101000111011011100001111000101101001001000011101100110110101110010101110000100100000111010000110010101110101010011110011001000001001000100101010011110100000010101010010111001000011110001010111110100...

Second Run Input

Bob
00110100101001001001100110000010001001000010010101100001011110111100000001011111001011011000110011010001001011101110110101001111111111000010111011100000110110110001100110100001001010100110011111100001110110001001001000110111001100110111001001001111001010000101000110001100011100010111000100100001...

Second Run Output

000010011001100000010111101011010011011101010011001000010110111001001000111111010101100110101101101101111011011110010110011011111110010100011011000011011010000011110000111000100110011000011000011000101110001100100000001010100000001000110111010100100100000001101101001011101101001010110101111001110001...

Third Run Input

Clara
100100000011011111101001000001101010010111110000100000011000111110000001010011010001011000011110000101101000111011011100001111000101101001001000011101100110110101110010101110000100100000111010000110010101110101010011110011001000001001000100101010011110100000010101010010111001000011110001010111...

Third Run Output

34 27
30 33
87 89
86 100
63 67
100 44
22 85
5 58
82 100
12 10
4 12
13 96
55 38
50 88
9 77
25 96
46 92
62 28
78 42
11 93
51 52
62 28
39 86
85 35
12 9
44 9
6 82
15 2
92 62
68 50
80 43
27 36
92 47
97 8
15 24
27 24
79 20
16 8
25 27
88 9
39 100
96 100
44 1
21 53
70 100
88 83
14 90
92 41
87 64
64 10
89 31...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #131:

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

First Run Input

Alice
100111010101000010000010101001001011101000100110001010110110110110000000110110101001000111001001000101111101011100000011100101100101010001111000010000111010110100010111010010001111100100001000000011110110010100001100010001100010110111011011011100001110010110101110100111001101010011001011101110...

First Run Output

101110101000011010101111111000011010001001001111110010101100101000000000010000100101000100100111001001011101110001111000110001110110000111100111010011101100001000001101101110111101111001111000000001101000110110001100110001110001111100110101111011101100110110000000001000011111111101001001011000101001...

Second Run Input

Bob
01110101100101100111011100010000110010001010010010011101111110100001110100110011111100000111001010000011110101001110000100111101101000110100111010101101101001001001001100111010010101101010101011101010000010010011100101111111101110010100101000100110110110111001000001100110000010100010010101011101...

Second Run Output

010000100100101011001101110110010011010111011010111010000111000100000010110010011011100101100001000000000001100011101100010000000100111001110001010010001010110110001001011010101011000100011000001101000110110110110110101100100110110001100101001101000011100000110110101111011101100001000001000100101010...

Third Run Input

Clara
101110101000011010101111111000011010001001001111110010101100101000000000010000100101000100100111001001011101110001111000110001110110000111100111010011101100001000001101101110111101111001111000000001101000110110001100110001110001111100110101111011101100110110000000001000011111111101001001011000...

Third Run Output

10 69
80 42
30 41
10 68
64 69
66 24
45 62
15 77
54 97
52 75
76 21
69 39
52 9
80 79
2 51
57 51
89 44
50 98
60 62
36 30
46 51
77 83
76 74
55 58
64 89
62 18
38 70
89 25
80 35
69 88
14 39
8 70
2 24
92 73
91 83
49 18
88 22
64 100
30 47
82 81
63 31
48 78
81 99
9 40
64 34
16 51
61 27
15 49
8 53
11 76
80 77...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #132:

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

First Run Input

Alice
010101010000011010110010010010001110000001100010110010011010110101110011100000111000100100110111010010110110000100101110011001110100101000010101100011000000101001011000101101000010001001011101001100010100101100101100010000011111111110100110001001001111101001010100001011010100111111001101000111...

First Run Output

010011010011100100000110001010110010010101000001101100011010001000100011101110110011010111000111010100110011011001011010101110010001011011000011111110111001011100001101111001101101011101100110111011111001010111011101001011001110000000000101101101101100010010111100110000010000000001100000001010100000...

Second Run Input

Bob
11101000111000011101001111000111111010101111011111110001100101001111100011101001110110111000001000000000010010101001101000101010000110001011101110001010101001100000111011110001000110110011010100110001001101111101000101001111000010010100111111000010011111000010110010010010111011010100010101110001...

Second Run Output

111111111100110001011110001101111100011001100100001111010000010101001101011110110001111101010100111011110111111011101101010000001001000011100110101011001101111100001010010010110001010111001110001101110011001110010100011111111111011001111101010011000111110001001110111111100001000010110101010111101010...

Third Run Input

Clara
010011010011100100000110001010110010010101000001101100011010001000100011101110110011010111000111010100110011011001011010101110010001011011000011111110111001011100001101111001101101011101100110111011111001010111011101001011001110000000000101101101101100010010111100110000010000000001100000001010...

Third Run Output

54 1
82 12
47 95
11 55
41 69
71 21
17 53
58 33
7 66
36 33
96 35
12 55
25 69
5 78
97 89
71 97
5 42
17 80
4 32
82 31
40 15
95 76
55 19
9 22
86 56
80 15
1 66
81 59
81 72
1 40
4 10
80 3
100 68
91 68
55 43
91 30
11 1
45 17
90 9
22 74
58 64
8 72
22 99
76 37
79 67
90 85
15 26
86 34
56 15
82 23
18 20
98 7
4...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #133:

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

First Run Input

Alice
010001010101110110101001001110100100101010101000001011001101101011010110111011110101110010010011101100010000000011001100010001011111111010110101000010010011001010100111011011111010011110101011001011011001101100100111100000101000010101101111010110001010001011110010101101110011111001001101011011...

First Run Output

010110101101011011000001001001110000100011001101000100100100100110101001011000000000010000101101001001101101111011111100100010111100010101110011010010101111010000001101011011000010000100011011111000000001101111111111011001111101011000100001100011010010010010000100111011000001110000111010011100011100...

Second Run Input

Bob
10101100111000001001001011110001010111011001011101000010100001011011101101000110011000101111011010111100111110110010110110011011011001001111110101011111111000000001100000110001001001010101001101000001011100100011100001011011001110100101011111101001010000000110011010101100010000000011100110001101...

Second Run Output

101111111110000000010001001000011111000010110111111000111001000001100001001110001011101111111101111001100101100001000011110010100101001110111010110110111000110011010000101000101000011101001101001011010100001011000011000011000010111010011001100100100001010001101110101001000010010101010111110001111010...

Third Run Input

Clara
010110101101011011000001001001110000100011001101000100100100100110101001011000000000010000101101001001101101111011111100100010111100010101110011010010101111010000001101011011000010000100011011111000000001101111111111011001111101011000100001100011010010010010000100111011000001110000111010011100...

Third Run Output

6 99
5 40
50 88
87 13
97 51
57 42
22 5
35 36
49 37
100 42
94 18
53 47
46 50
36 79
90 52
43 47
15 83
79 59
61 48
94 88
25 15
87 50
48 34
11 37
83 3
8 42
7 53
43 59
41 90
61 4
90 10
94 18
64 25
48 24
89 55
60 21
32 29
89 57
80 68
90 47
81 19
90 9
8 43
69 10
68 91
57 71
98 60
52 87
91 94
28 89
73 83
45...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #134:

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

First Run Input

Alice
111011011100011000010111010010111100010101101011110111100111011010110001100010000111001001001011100000101000101000000100110111110010100010100110110100001111101011001101000110110011011100100101100000010001101101100110110101000110001100010110001011001010000011011001011000000010010110111011111001...

First Run Output

111101011101100111001010110111001010100001010010100100100001111110001111101001011111111101100010011100111101011011011011011010000100011111010101001000110000100111000001001100100011111010000001100001110100000000010010010011101101101000000000111110111110101010100101010101000110011011001001000001000111...

Second Run Input

Bob
10101100000010111111001010001010001101100101101001101011101100011100011011010111110011111011000001110011011001110101010110111101000001110001010100101100001000110101000001010000001001001010101101101011111110101110110011110101010110111010100001000000110101100000111111111000010100111010001010110001...

Second Run Output

101010011100011100110110001100101111100001001101111011000110110111111100010111100001001101001011011100010100101100101110000000010010011011010010011110101101001011010101111101111110110001101011011000100100100010100001100000110000011000001011001010110111011111000010011111011101001110001111101110110011...

Third Run Input

Clara
111101011101100111001010110111001010100001010010100100100001111110001111101001011111111101100010011100111101011011011011011010000100011111010101001000110000100111000001001100100011111010000001100001110100000000010010010011101101101000000000111110111110101010100101010101000110011011001001000001...

Third Run Output

47 79
34 27
73 72
8 50
62 25
85 91
49 76
12 44
7 83
2 28
25 26
85 99
41 92
8 99
17 73
6 9
87 91
76 7
30 69
38 9
60 68
42 70
74 28
81 72
2 80
85 95
1 78
98 93
62 4
66 19
54 76
31 21
91 62
96 39
92 18
83 35
79 72
67 4
24 2
93 63
31 57
91 23
60 71
63 14
53 82
42 89
2 68
60 31
98 13
61 65
44 69
76 93
6 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #135:

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

First Run Input

Alice
011110010010111111000001001001011000110000011011010111111101011101000110011011111011010001101110001000011111101111111010100101011001011001110111100001011101101101100011011000001101111001000000100100100000000100011010011111000101000110011101111011011111111000011101101000101011001101011111101111...

First Run Output

011010110000110100111111111010110010100111110010111000111111100111111100010101010100110010001100001101111001111100011010000110010011000000111111010011110110110011111110011001001010110101000100011010100111010000001111011100001100110010110110010110001101100111010101010001001101100111110010100100101111...

Second Run Input

Bob
01101011111111110001111100110101101101100011010010011000101111010101101100011010111010111001100111111111010011100010110010011010101110010001001011000111001000111011111101101101010001110000010010111110011011111111011001010010111110011010011010110110101110100011101101011010010001000100000100101101...

Second Run Output

011100000110111100010101010000001110111000110000110110010100000110100101001011011000010100001100011011100000101010010111110010100100000011111000101110100101110011101010010111010011110110100011011000011111000101101011110111111111011110000011110101110110000000010110100100110011101001011100110001111111...

Third Run Input

Clara
011010110000110100111111111010110010100111110010111000111111100111111100010101010100110010001100001101111001111100011010000110010011000000111111010011110110110011111110011001001010110101000100011010100111010000001111011100001100110010110110010110001101100111010101010001001101100111110010100100...

Third Run Output

33 70
7 58
70 31
95 53
58 100
8 57
43 47
58 14
54 87
20 5
1 30
32 95
61 68
16 83
65 39
69 17
88 46
77 31
20 87
11 51
60 98
91 63
4 62
33 46
77 67
20 74
47 43
64 77
17 83
14 49
78 87
78 9
33 96
98 90
85 65
29 60
71 42
71 10
58 29
19 82
78 25
81 60
22 55
42 38
99 44
16 33
23 1
59 35
23 41
29 83
71 28
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #136:

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

First Run Input

Alice
110010111011100100101110101110000101000011101011100110011111011100010110100001000100000101101100001001010010101101110000110000100010111110100111110010100000010100100100000001000110001101011011001101110111010101101000111000000011000000100101010010100001010010000011100110010111000101111010001010...

First Run Output

111000000101100010100001110100111000111111010100010111001001000000111001010101000001010011100010010010111101000010101110100011010110101001011100011110101001101100110011010100010111111111011010011100111010010110101011000001111101000011000101000111000111100111111100111101111101011000100101010100100100...

Second Run Input

Bob
01111000111001100101111110100000011000100000000000000000001101101000010100010000111111111101000110100100110001001111011001001100011101100001110010010011110011100001101100001001100100001101101111001110011111000011110101110010101001011100111110001100101000010100001111100000110111001001010001001010...

Second Run Output

011100001101101001101100011111011110001001111101000101110000111100110001111010110110011000111101111001011000100010001001110110000010000011011010010001110101101111100011100111100000010001111010011111001001011001110100001001100011101101010000110111010001001101110101101100001011000001100010001000110100...

Third Run Input

Clara
111000000101100010100001110100111000111111010100010111001001000000111001010101000001010011100010010010111101000010101110100011010110101001011100011110101001101100110011010100010111111111011010011100111010010110101011000001111101000011000101000111000111100111111100111101111101011000100101010100...

Third Run Output

25 73
7 80
25 46
59 17
66 61
26 86
40 37
48 96
40 65
95 90
47 86
64 22
43 5
86 73
19 10
38 90
22 82
11 22
88 21
45 12
1 4
73 50
78 33
48 16
46 69
46 70
98 56
14 52
40 8
70 64
45 74
65 30
72 7
25 87
73 13
100 20
93 8
89 63
11 45
51 25
87 70
91 33
42 57
20 75
59 91
65 24
50 38
79 98
2 64
86 88
86 32
1...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #137:

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

First Run Input

Alice
110111110110110000110101011100110010001101111110001111110011111100011101011111010110001101101100001000000111001111110100100110000111010101000101000011011011111000111010001111101101001111001100101010110101011000110010111100000100011110001010011100111000111111110100010101110111111010000110000011...

First Run Output

111101000100001110000010011101101100000011011011101101010111111011000101001011010111101101001100100001011111011110101001111000010001001111000011001010110110010011111000101101111001111011110110110111011010100010001111111000101010011111011010100011001000111110000110111101111011101001111100110011110000...

Second Run Input

Bob
10001101101001010111011110010001010000010111110111011001011101000010110000110000000011001110101100000100000000001100110011110001001011011110011011010101011001100101001010011010111101011000000010110100111011000101101110010001011100000111111011100011111010101010110110001011101010000011011110111111...

Second Run Output

101000010001100110010000100100000010010101101011001111100100000010001110101000111001001100110111010110101101001010110011111010010010011011000001101010101000000111011000111011011110011100011110011001110001111010110011000001000110010011101101000101011001111101100010001001111011000001111011101111010100...

Third Run Input

Clara
111101000100001110000010011101101100000011011011101101010111111011000101001011010111101101001100100001011111011110101001111000010001001111000011001010110110010011111000101101111001111011110110110111011010100010001111111000101010011111011010100011001000111110000110111101111011101001111100110011...

Third Run Output

34 23
30 12
42 70
19 55
11 62
97 91
58 38
83 84
51 73
11 33
6 12
7 26
35 76
13 80
30 57
39 81
57 48
28 18
58 31
37 43
98 100
63 95
93 29
9 90
79 13
82 76
79 64
88 2
45 45
83 68
78 35
83 44
12 97
43 67
1 30
98 11
47 78
9 16
28 10
56 33
71 2
30 11
31 77
94 55
96 36
51 39
5 84
89 51
89 90
48 47
27 14
2...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #138:

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

First Run Input

Alice
111011000000001010110101110110001000001000011001100110011100100000110100010110111000110001000010011100100010111001110011100110100101010011001011110010100001100011000010010110001011100010111111000100001000101111110001111100011110110000100110110010101111011000000010111010010110110111001111001011...

First Run Output

111011000000110100111100010100000110100110101010010100011001110101111111001100110110101101100101111111010001011000100000101011001011001101011011110111111111010110011010101010010101111100111011110001110011110100100000111110101000010001110100101011011000011011001100101011010010001100011100110100010100...

Second Run Input

Bob
01110001100001011111111001100110011001101101010100000111100110110000100111001101110011011110110101101111100101101010111011111000110110001000011010001010011101011010011011101110001001101111001101000101110000001100111100101000111100010110000001001000110000101001100010001110010000110111011101111011...

Second Run Output

010011000111110111001110101110011010101011110111100110001001110110110111100010001010011110101111111111111111010101110010000001011000010010011001101010011011010000101111000100101101111011000011000011101001000110010001110000000010011001101101000101110000000111110000000100111111010001001100011111000001...

Third Run Input

Clara
111011000000110100111100010100000110100110101010010100011001110101111111001100110110101101100101111111010001011000100000101011001011001101011011110111111111010110011010101010010101111100111011110001110011110100100000111110101000010001110100101011011000011011001100101011010010001100011100110100...

Third Run Output

88 21
40 75
95 91
98 68
34 3
81 98
93 32
79 3
84 96
6 34
13 29
21 70
48 96
69 81
24 19
60 75
63 87
72 95
21 6
20 99
78 36
72 41
90 64
26 36
54 94
56 43
3 48
5 3
98 42
22 75
23 57
9 84
6 21
21 67
27 62
33 21
87 25
47 28
33 27
64 100
52 31
82 100
56 45
15 67
6 61
48 6
14 3
56 35
79 97
8 54
56 64
78 50...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #139:

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

First Run Input

Alice
010000101010110100000001110010101010000000110110111100011011100011101001001010010110001011110001111011000100100000010000111110111100010100110100010100100000111110110011101000001011010000001101101110110111001000011011110111001000011101001101000011010010011111011101100010000011111101100100011111...

First Run Output

010001011111001011000111110110100001000111101101101001110110101011110010011100101111100011101001011000000000000011001110101001110101100011100011111011010100111110000101111111000010101011001111011101011011101100110101110101100110111100100000001010110000111110110110011111100111111010010101001111100010...

Second Run Input

Bob
01001000101001100001111110000100011010000000000011101001100101001000000111000100100101110101001001110111000100101111101110010000011001010110011100100111000101010011011000010000110001100101100101110100110111000001001111101100011100010010000010001000000001110100011010111110001100101101111101000010...

Second Run Output

011000111000000101111010111101110100110101110111101101110110011000000111010001010110010000001001010001001000101010010010000001101100101010110010000011000100110010001111000110111101110100010001001101101000101101111111110000011110011110100111001010011100110101001101010001011000110001000000111011000100...

Third Run Input

Clara
010001011111001011000111110110100001000111101101101001110110101011110010011100101111100011101001011000000000000011001110101001110101100011100011111011010100111110000101111111000010101011001111011101011011101100110101110101100110111100100000001010110000111110110110011111100111111010010101001111...

Third Run Output

73 32
25 82
30 73
40 88
15 85
49 49
56 12
58 89
14 60
61 72
12 88
42 10
92 52
44 52
75 97
10 66
58 87
11 13
59 18
46 36
45 61
67 31
44 95
19 81
70 89
46 61
8 75
55 77
38 48
93 45
10 27
39 90
62 72
32 55
9 96
22 20
3 86
28 10
8 95
45 96
92 44
92 60
21 35
60 68
92 5
18 24
80 79
68 86
96 42
77 89
54 64...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #140:

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

First Run Input

Alice
001011110101100011011101011000100001100111001110111100111111100101100100010100001110000111100111111100100111110100111111001001111101111010001001011101010100101111101011110000001000011110101010101110101100101000010111000100110101001111000100101001111101100100110101001010100110010001011011001111...

First Run Output

001111110100011100011110001111001000111101111011110011000101100011011101011100110010010000101111000001101001111110111111100111000110110001011101001001100001010100101100010111111111111000001110011001100001010110101101111101000001110110001001001011100001111000010110100101110011010010010111100101010010...

Second Run Input

Bob
10011001111011011010010010101111100010111011111010010110001100101001111101110101000111110001100101010110000101110111010010101110001011001010110110001101011110001101101000110100110111101010101110101010111100111110011111111000000111010111110011100101011101001010110101011100001001101010011101000000...

Second Run Output

101110101000101011100101001000101110101100111000101101011001011001011010001000011001001000100001011111100101111011100011011100010010100010110000010010000010110101100011000000101101110110101011101101010001010011000101101101101110000000000110110011101111101110010110110000111011100001111000010010000000...

Third Run Input

Clara
001111110100011100011110001111001000111101111011110011000101100011011101011100110010010000101111000001101001111110111111100111000110110001011101001001100001010100101100010111111111111000001110011001100001010110101101111101000001110110001001001011100001111000010110100101110011010010010111100101...

Third Run Output

52 81
36 40
60 99
79 63
72 94
76 39
63 12
96 32
44 72
100 35
59 98
75 36
40 98
83 13
96 9
97 89
70 55
80 63
67 35
93 5
16 100
58 81
100 32
69 8
34 47
28 53
70 56
29 35
60 49
28 85
38 39
95 51
25 41
40 8
52 6
80 60
43 27
48 79
79 94
66 31
24 55
6 56
56 16
89 15
64 75
94 15
61 65
15 67
81 18
22 24
36 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #141:

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

First Run Input

Alice
100100011001111010110000100010011011001101010011011110100100111100010100111011011000101001111000101111010011011110100000011010111011000010100111100111010010000101001000110110100111011110001001001111001100101111010011010010111010011000011100101111000001000000011011111001100110000110011100010100...

First Run Output

100010010011111001100010100110000101000111000010010001011100011101100110111100001110010001100000100000110101011101101101010001010000111000001001110001110001000010100010011100110111000000111000000011111010101101111001100110100101001110101011000110011101111100101111000101100110110011100100011010101111...

Second Run Input

Bob
10011101101011001000010011010011101101001011110010001111010000011100011111001110101001001110001111111011110011101011011101110110010000110000001001101000101111001111010111000000001110110000100111001001100110110110001001100010111000000011111110010110011111110010001000100000111111011111100001110001...

Second Run Output

101011001011011101001100111110000010010010011100001111110001001101110000000110111101111100001011010111011010111001110010110101011010110000110011000111001000010111001000001001000000101110011011001000011001111110011000101111100001111010011010001101000111010010011110100011010111100010000101101111001111...

Third Run Input

Clara
100010010011111001100010100110000101000111000010010001011100011101100110111100001110010001100000100000110101011101101101010001010000111000001001110001110001000010100010011100110111000000111000000011111010101101111001100110100101001110101011000110011101111100101111000101100110110011100100011010...

Third Run Output

72 97
2 100
1 30
2 73
98 84
3 54
59 80
21 26
96 15
62 29
19 14
92 10
52 22
3 90
75 55
71 83
12 21
22 35
95 48
73 52
72 74
33 96
47 11
73 10
64 24
28 38
32 21
59 81
41 57
52 12
36 7
65 45
62 46
2 26
14 78
49 2
13 84
77 79
72 63
90 65
77 4
78 70
88 100
9 12
82 16
76 44
78 68
78 34
7 65
2 23
55 37
44 1...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #142:

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

First Run Input

Alice
111011100000101010100110011000100010001000000100000001111000010110110010101110010000111100001010100001100000000011000100110110000001101001010011011010010100010000000000000111100101010100111010100000101100111110011011000101101101101010101110101011010110101110011101111100011011011100100001000001...

First Run Output

111011001001000110111011100100111101011001010100111111110011101010111110111010010011011010101110010110100101001111000111010001101111100111010111110010110110000110110111100000000011000010111110110001000001101000010011000100000100011011010000011001111110110100111010001010110001000111001000010001111000...

Second Run Input

Bob
10110000001110111111100111110100111100010111010000011000011101111100000100000111000110000101111111111111110010011100110111100011111000110001001110111011010011011110000011000011110001001111111111100111110000111111010111100110011011100111100000011011010101101110000010000011010010111010000010011110...

Second Run Output

100011001011110110101011101011101000000000111011110000010111011101001100000101000000011010000001101100111111111100010100111000101011101101000001100101011001001101010011000001001111011110001101111001101011011000011000100100111001011111011110001110001001011011110101001010100001001010010010111110011101...

Third Run Input

Clara
111011001001000110111011100100111101011001010100111111110011101010111110111010010011011010101110010110100101001111000111010001101111100111010111110010110110000110110111100000000011000010111110110001000001101000010011000100000100011011010000011001111110110100111010001010110001000111001000010001...

Third Run Output

44 9
78 31
37 2
46 90
3 75
72 74
94 75
2 10
89 39
65 96
63 9
10 40
27 49
9 97
51 82
74 71
28 13
73 52
49 74
71 22
4 85
14 12
62 17
93 75
66 26
87 56
81 55
61 18
44 20
42 57
17 56
44 76
79 86
64 79
89 60
2 94
54 52
99 92
92 35
38 29
91 66
74 27
42 60
40 100
82 15
97 15
44 72
19 42
72 55
40 71
36 27
6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #143:

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

First Run Input

Alice
011001010101100011110001100011010110111000101001110111001100111000100001101101111000101000001101000110101100000011001101000000110110000000001101101001011111111100111111001010100110101010100001110000001000000110010011011011000001101010011110110000010110101011111111011111100111011001110011110011...

First Run Output

010110110010100011011100100100001000001101101011010110110010000000010111101011000011111011010001001100000100001111001001010100100111011001101011001011100011110111000001100010001001110101100000111000010111000111101100000111000110000101101010011101101100011100010111001111011000101111110110111111011100...

Second Run Input

Bob
11110010010000011100100111100010010100101001110100100001011110110011000011100110011111100000101111000011110110001001110110110100011010011111101001111000001001010011000100110111010111100101111110101000010001111001110000111000010011100111011100101011101001101000100011010001100110110001011101000100...

Second Run Output

110111000100001111010000011010100011111100011111011100100000011100101110100010100011101110110110101000111110101011001110110101010011101100110001110000010111100010000110000110111100101111110011100010011110000100101101111100101010101000111000100010011100111101110000100101110001001000110011010010111110...

Third Run Input

Clara
010110110010100011011100100100001000001101101011010110110010000000010111101011000011111011010001001100000100001111001001010100100111011001101011001011100011110111000001100010001001110101100000111000010111000111101100000111000110000101101010011101101100011100010111001111011000101111110110111111...

Third Run Output

58 23
82 50
50 55
5 92
99 46
91 100
3 97
83 93
52 99
88 49
54 88
29 59
98 15
56 2
5 38
40 2
1 80
45 91
5 34
92 66
82 77
19 48
65 36
88 78
74 51
67 51
47 1
75 14
71 99
3 14
75 91
44 39
93 91
12 68
72 53
68 3
51 54
85 5
38 38
2 18
43 18
3 31
6 21
41 17
91 81
51 45
9 94
75 45
29 92
100 84
15 15
24 87
5...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #144:

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

First Run Input

Alice
101111000001111100100001101010001111010100001101101111110101101000101100101110100101100101101001100000010110010011110111001111111010100101101101011100101110010010011101000000110110000101001100110000110001110000000100100111110011001100001010100101111001011011011000101000000010101101010001100110...

First Run Output

101000000100000010111011100011111001101111100000000010110000010111001011100110100010001110101100000001101001000110100111010010000100000110110001011000100101101011110000010111110000001100111011011111001100011101001101001111100000110101010011000011000000000011101111110101111001010010000111100010011100...

Second Run Input

Bob
10011100101011101100111100000100100000100100011111010110110010001110101000111010111001110100011100010011110010011111011101000001011101011110100100100110101000111001100011101000001110011010001110011011110110111010001010011100010101110000101100111101100000011001010010110001000101000100111111001010...

Second Run Output

101010011101011111010010111001000100001111000000000001111000101100111001010110111110010111111111001010101001010111101101100011011000011011110001100101110111001000100101000110011101110001111001011111001110100011010100110101000011000111000100001110110110110101100010111110110100011011110000000110001101...

Third Run Input

Clara
101000000100000010111011100011111001101111100000000010110000010111001011100110100010001110101100000001101001000110100111010010000100000110110001011000100101101011110000010111110000001100111011011111001100011101001101001111100000110101010011000011000000000011101111110101111001010010000111100010...

Third Run Output

22 92
38 25
19 95
76 20
18 50
60 30
45 8
42 79
76 24
19 70
43 66
42 5
66 91
35 65
3 97
10 48
50 58
26 59
31 4
38 60
47 6
19 91
45 36
91 58
31 4
61 10
1 58
39 18
87 71
40 50
25 66
97 26
12 28
73 41
28 61
19 36
38 77
57 98
81 38
34 58
46 5
96 6
69 16
72 3
47 90
75 84
83 71
40 86
96 88
29 78
77 11
86 3...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #145:

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

First Run Input

Alice
010001111011111000010111111011110100111001010011001111110010111011001101110000001111010001000000101111000000101110001111010111011110000101010110010011010000000010111110000111100001000111111100011000101101101101011010111111001100110111011100010010110110101010100010101101101001100100100100001101...

First Run Output

010001101111000110010111101010100101101101001100111000101101001001100110111100000010111010100100110011111010011100111100111001000111100001000101011011011011100101111000011101001011100000110101001010110110001100010001001100001001110001111010111101010011011110001010100101000111011110001110111010000001...

Second Run Input

Bob
11111100001011010000110010001101001111000001010010010011001010110010010100110100101010010111110001110101110100101110100010111010001001010100010001010101101001100001101000010010101101101000011010111001010000001010101000101011111111000101000111011110000000101000110100010111111100111010010101111010...

Second Run Output

111000100000001111000100000100111100100001001000101100000111011100000000111010100001000001101100000010111000101001000011101100000111011011110110001111000111100100001000000001100011010101001001010111110100001111110111100101101010101100010011101111000100011010010010011100110011100010001010101101000010...

Third Run Input

Clara
010001101111000110010111101010100101101101001100111000101101001001100110111100000010111010100100110011111010011100111100111001000111100001000101011011011011100101111000011101001011100000110101001010110110001100010001001100001001110001111010111101010011011110001010100101000111011110001110111010...

Third Run Output

66 24
63 87
100 94
36 49
82 25
42 15
14 33
55 52
7 12
10 83
54 93
3 80
99 62
100 28
98 39
81 30
1 44
91 59
26 53
95 71
93 36
38 38
95 85
9 40
72 90
72 23
18 40
47 87
2 7
27 8
5 12
87 33
37 99
71 58
48 68
67 53
11 90
86 34
46 64
2 85
72 73
72 44
84 29
10 90
30 27
95 25
27 79
71 42
76 27
53 52
36 28
8...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #146:

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

First Run Input

Alice
011010100000000010001000100010000011011111001010001011011100100101011100100011011111001001001100000001111011110000111010101101010001001110111111110000011111001100100100111101101000101100011000101010000111110111011000010101101000111011011011001110101100011101110100010101001111100100101010111111...

First Run Output

011010000100111001010101101010001101000110011100110001100001001000111010110110110110110101010000101010110101011111011100010000001100100110111101001000100110101000101111100111111010110010101011110111111001001001000001100000000000101110010000000010100110010010011011111101001011101100100000110101000100...

Second Run Input

Bob
00101010010110110101100100010101000100101010110011011010101101000100110000011011111001001011110001111111110110001001110010000110000000000010000111111111010111011000010011100111000011100100001000110000001101001000010100000111000011000110101001011110100110111100000011010110001001010101000001100110...

Second Run Output

001100010110110011010110001000100011000001001011101111100010110111110110010101110011101111000010000101101111100011101110100100101110000010101100100100110011010110010000010011001010111100010110011110111101111000110011100010011001110100000011101111111101011111110100001100010001100011111110101100010101...

Third Run Input

Clara
011010000100111001010101101010001101000110011100110001100001001000111010110110110110110101010000101010110101011111011100010000001100100110111101001000100110101000101111100111111010110010101011110111111001001001000001100000000000101110010000000010100110010010011011111101001011101100100000110101...

Third Run Output

50 82
20 41
54 9
35 56
73 89
32 41
12 42
83 11
71 72
45 62
25 26
44 43
47 100
83 1
42 42
18 3
8 73
99 8
64 8
32 54
20 3
79 96
77 9
87 30
41 98
95 33
59 96
84 75
84 4
15 21
45 79
91 93
42 61
55 28
93 4
95 4
36 12
24 7
27 79
81 1
13 46
79 81
38 56
72 21
53 72
90 81
40 50
28 13
74 42
54 79
45 69
5 7
76...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #147:

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

First Run Input

Alice
011100111001010111110010110101111110111101001000101011011111101101010001110100001100001111110011001111110101000000011111100110010111001010011110111011011101001100111100011011001001010000110001011100101010001111000110100111100000011111101011111001110010010010010001101000110010000110010111000101...

First Run Output

010011100110110010011100111010100101100011010111101011111100000111001011011101000111110111000100000110000100101111110001101110011100101010101010001011000100000101001101100001100110100111100010111001110101000100110001111110000011010010001110001010010110011001110110100110111010001001000000110010111001...

Second Run Input

Bob
10111111001110010001111101011101000110111110111001101111101001000011010110001000111011110110100001001001111111101010111100100101101010111100111011110001101101001001001000100111101000101110110101100010111101001111011000101111000001001010000100110100001110100110101100001001010001010010010011101010...

Second Run Output

101001110110100001101010101011110000000100010000100110111100101011110110100000101101011010011101100000011100011100000100101001010010110000011111101010100101010100100011001011111000101111101110011011001110001011101100010001111010110100010111111001011111011101101100110000101001101101100100010111111100...

Third Run Input

Clara
010011100110110010011100111010100101100011010111101011111100000111001011011101000111110111000100000110000100101111110001101110011100101010101010001011000100000101001101100001100110100111100010111001110101000100110001111110000011010010001110001010010110011001110110100110111010001001000000110010...

Third Run Output

27 75
6 49
48 5
31 63
90 41
16 4
13 27
11 50
78 60
67 65
46 6
100 34
23 63
19 23
79 87
50 72
100 36
90 37
30 74
79 23
50 30
61 83
34 85
45 49
80 96
64 84
11 22
76 36
92 35
64 34
29 94
16 38
96 54
71 14
92 43
13 18
63 88
71 59
1 98
88 87
97 77
45 77
30 65
23 72
47 32
50 93
97 77
82 91
64 8
52 88
27 7...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #148:

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

First Run Input

Alice
111100110010001011010011011011000001111001011110000100000001100100000101111100011010000010100011001100001111010101011001000010010000011010101101011110110010111110101111101000111111110010000010100101100110101000100001000011101001110111101101010111101011001001000101100001000110100000000101111010...

First Run Output

110011100000000001010001101010011101011101100100101110001101100010111011010100101110000011010000000101001011011100101000100010011001101110101011011100001001010101000001100110110111111001000101011000000001011100001111000000110010100111011101110010010010000010000100010001011010010111010001001111000110...

Second Run Input

Bob
01101111011100110100010110101100001011001010001001011111000101101010100011111100110100110101000011010101100000010111100101010000100111111000011001100101000001110001000011010001000100100110001101101010000101100110110111110111000111001010010011111010101000100111101011110101110001110101000000111001...

Second Run Output

011100111101011000110110011001010010110000011100011010010100101110000110011010011110110011100100011000101111010110100110011000100011011011000111000010001010011001001110111011001101010000000001000111000011001010111100110010001100010100110111100001100100000111010010001110011010001010100010100100110110...

Third Run Input

Clara
110011100000000001010001101010011101011101100100101110001101100010111011010100101110000011010000000101001011011100101000100010011001101110101011011100001001010101000001100110110111111001000101011000000001011100001111000000110010100111011101110010010010000010000100010001011010010111010001001111...

Third Run Output

78 74
83 34
35 8
10 30
56 62
9 72
59 38
90 1
77 7
44 74
64 9
37 34
7 64
90 72
12 61
5 86
19 12
32 71
98 13
70 27
2 49
15 7
71 14
43 87
33 96
83 58
85 96
63 34
80 88
84 25
35 12
100 16
27 56
27 34
62 20
55 83
67 29
6 19
80 99
92 32
23 51
13 11
93 41
100 41
44 8
63 15
96 15
11 14
2 5
96 53
88 38
32 32...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #149:

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

First Run Input

Alice
111011101001100110000101011100001101001000110001011111101011101110101011110110101110101111100111111011000001101101000100111100010100100001100010000010010101011011000110111101001001000011100000001110100011010110100011011111101000111011001100101100010011010100101110101100001111001100011011001000...

First Run Output

111011011111011000110000010101101010110001001111110100110100101101100001010110101001100001111001010011000001110100000100001100000101100101100111001011011100000001111110000101010010000100111100110100111010000110101101011111110010001010010000100010001101000111110001011100000001000111110011110111110111...

Second Run Input

Bob
10110011001100001100111111100000011110111011111001110011010101010010101111011011110000101010110011011101001001001101000001101111000110111011101000101100010011010000101000000010000001011100010100100001011000001011100011100011100100011001010110100110011111010000010101100110110111111110011000100100...

Second Run Output

100011110111000000101000101111100011101100000000101101111010011001111010011101100010110000011110011110000101101110011010000011010101000000111111011100111011000101011000100111000000010110111010100000010111011101000101110011110011100101110001110110110011010001000111000111101011100010110111111101001011...

Third Run Input

Clara
111011011111011000110000010101101010110001001111110100110100101101100001010110101001100001111001010011000001110100000100001100000101100101100111001011011100000001111110000101010010000100111100110100111010000110101101011111110010001010010000100010001101000111110001011100000001000111110011110111...

Third Run Output

24 37
28 53
56 72
63 15
38 43
74 14
77 54
25 48
8 84
93 17
36 11
36 65
94 58
41 59
100 97
73 7
80 28
3 69
66 36
82 52
41 38
52 1
3 27
58 41
44 52
89 64
34 63
69 22
67 91
98 53
63 53
42 59
43 1
70 85
14 78
12 66
94 83
38 5
51 80
50 7
7 9
84 3
82 94
66 59
8 98
41 47
71 52
30 10
67 39
58 44
5 70
75 67
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #150:

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

First Run Input

Alice
110111001110101110000110111011011101111111000011000000111101011001111010101001010001100010101010100011100000011011110011101111001000011000111110001111100011011100010010100101000100000010110111111110111010010101110111001001010010011111101110000011100101101111001110110100100001000100000001100011...

First Run Output

111111100010001010011001010110100101111000111111101011100100100111000001000000001111000011110010001010001110100111111001110010010111111111110010111001100101111110110111100010110101101011110110010101010011100001000001101100011110010101110100101101001100110110101100111101010100101100011101000110010011...

Second Run Input

Bob
01000001101010100010111010100010101111100111011101000010111101000001101110010100001101101111100010000000011011101110000110101010100111111001000001001100111011110110111000111010100100001001110001101011000110001110110100111111010010010100101101000101101110011000101000000111111110100010000100000010...

Second Run Output

010000110000001110011010011111110101010001010111011100010100100000000100100100001011001110101010101011110110000001110111111000110110010000011000101110101110011010010000110110110011010011000010001111000011101001110010111001011001101011100000110111111101011001000100100101100110000011101010101011000010...

Third Run Input

Clara
111111100010001010011001010110100101111000111111101011100100100111000001000000001111000011110010001010001110100111111001110010010111111111110010111001100101111110110111100010110101101011110110010101010011100001000001101100011110010101110100101101001100110110101100111101010100101100011101000110...

Third Run Output

49 25
48 96
24 91
74 92
70 78
6 1
95 96
46 86
55 24
1 94
1 46
29 52
17 73
53 83
64 18
38 95
50 95
97 43
11 6
12 97
14 47
81 33
44 84
18 80
79 46
8 59
43 28
38 66
28 45
35 65
44 98
90 44
59 57
21 62
15 80
28 4
26 45
16 77
1 41
28 38
57 58
7 82
70 93
10 72
59 41
6 36
68 92
78 15
27 5
59 75
30 92
64 90...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #151:

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

First Run Input

Alice
111111110101011001001100110010000110111011010000011101011100000011101110001111110100110001101100100111111100100110011111000110010000011110010100111011100110011011011100011111011010111110110011100001010011100111001010000101000000011010101001110001000101010100100000000111110101110010101100110100...

First Run Output

111101111110110001101100011010001111011000101100000001110100101011000110101101010000001111100100111011100101111110100011100000000001000110001110100010001011111110101011101101010011011111010000011011100101101010100010000111001010010011111100111001110010001100100110011000000010110001011010011011111100...

Second Run Input

Bob
00110101110001001010100001011010111100111100000001010000010001011111110110010001011001011100001111100111101010000111000001100101100100011110001101000000010110110001111100001100010100011100011000110000100000001101110011001101110010101101111011000111000001111110000100100000001111001101011111010010...

Second Run Output

000111011101000111110001111101110001000001101011100001100111011110011010001000111001111110011100111011100100001100101101010010100001011001000110011010100100001110111101001011001111000111110101010110011000011000110110100111001111000001011000000000110100101110111000010111000100000010110111001110000110...

Third Run Input

Clara
111101111110110001101100011010001111011000101100000001110100101011000110101101010000001111100100111011100101111110100011100000000001000110001110100010001011111110101011101101010011011111010000011011100101101010100010000111001010010011111100111001110010001100100110011000000010110001011010011011...

Third Run Output

63 49
60 16
54 1
2 99
13 69
44 86
42 15
42 43
57 8
44 64
89 83
84 72
50 67
2 4
28 98
72 87
36 66
100 10
99 18
12 8
45 50
9 92
9 55
55 57
32 21
42 36
49 15
39 48
34 11
56 47
70 12
80 58
5 55
61 56
46 18
13 21
78 76
86 77
34 73
88 80
3 25
49 46
16 66
49 7
50 52
7 27
67 4
10 58
71 35
20 14
16 63
11 15
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #152:

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

First Run Input

Alice
011111001011000001110000001111100001010100110010011101010011010010100011000100011111100100110011110000101001110010010101010011110101011001110100110010000010111110001001000111111010001100000101010110101111100100110110010001000001100000011110111111111001101101010001101111100110101001000110110101...

First Run Output

011000011101101001110000000111010101011101111001111110011011111101000000100101010000111000101001101110010100111100110100111101000011010010000110010101111100101101111010001100010110000010001101001000000011001011110101101110101011001000101111010110111001101001100001000100101100000011000010110111110001...

Second Run Input

Bob
01001100110111000111000011111100000011100010100011000011011110000101001110101001011100011101111010001100110001001100000101010111001001010101000011000100110111010011011111101111111000100111010100000011110010001101101011010010010111101001000010001110110010000001101001100010111110101010101001000110...

Second Run Output

011101110111110101000101110001100010100101100000100011100000100011111110011011100110101110010101100110011110100110000000011000101001010010001001001010001010011110101010010100111011110100110111010011001101100010010100101000111011000011111100100100111101111011100000110000100011111101110111010000101000...

Third Run Input

Clara
011000011101101001110000000111010101011101111001111110011011111101000000100101010000111000101001101110010100111100110100111101000011010010000110010101111100101101111010001100010110000010001101001000000011001011110101101110101011001000101111010110111001101001100001000100101100000011000010110111...

Third Run Output

28 3
9 97
86 20
78 97
69 81
50 14
58 49
99 80
47 85
96 9
17 4
9 17
12 75
58 33
65 23
69 95
60 6
74 42
37 27
26 64
83 21
54 8
24 51
59 57
50 59
65 67
3 52
100 65
24 93
54 77
9 49
87 40
9 2
95 32
76 51
41 39
93 99
97 10
74 73
16 31
34 39
49 64
29 17
35 80
14 92
73 85
43 48
56 55
20 37
9 88
58 35
88 8
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #153:

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

First Run Input

Alice
010101111111010001000010001111110101001111101011001110010011000000000011110101101101001010110001010111111100111111010100000011110101111010110000010110111001101100110001001111001011001010011111011110001101101010111111011111001001111101111111010111110101111011010010101000111100110100100010111110...

First Run Output

010100000110001011110110011110111100010011010101101001001001100000010101110111011010110010101000111000000010100111001010010010100111001100010100000010111010011010000010100111101110000000110111011110010110010011110011001000111111101000110111001101010110001101101110001001000110001010011110111000110100...

Second Run Input

Bob
01010110111100100100101111010101100111000010100100110111100110100111011001011011100011111000000100010011101010001101101101010110111111011101100000001010010010001100000001101001010110111010111010010110100111001000100111110101101010010101001101101000011110110010100111111001011011101101110101011000...

Second Run Output

010101100001010001111001000111110010000011010111101011100111111001111100111101011100000011000001101000001010100011001011111010011001010000100001110100110100100111111111110101101011101010101100010010100110111011000111110110101001110001011100010011000011011000100011010010111100001001111010011100100100...

Third Run Input

Clara
010100000110001011110110011110111100010011010101101001001001100000010101110111011010110010101000111000000010100111001010010010100111001100010100000010111010011010000010100111101110000000110111011110010110010011110011001000111111101000110111001101010110001101101110001001000110001010011110111000...

Third Run Output

78 12
78 72
59 59
42 84
28 10
50 57
36 74
5 41
15 22
86 76
5 71
21 67
16 63
30 86
77 42
91 63
60 29
75 23
71 23
10 30
99 33
75 26
59 62
24 20
87 65
82 87
7 13
4 61
77 21
70 30
99 19
97 4
2 42
89 83
59 28
9 70
27 57
12 45
56 65
10 97
43 90
93 38
50 40
3 46
42 54
94 71
16 97
75 64
61 32
24 75
4 80
90 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #154:

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

First Run Input

Alice
111010101110000010010011101000111110111010100010001111100101110110011010000001111101011100111011001110001100001010010110000100100110100110110110001001001011001000111110111010001101001111010100101011001111111111100011001100001001100111101101100111010000110000011000010011000010111101010000011010...

First Run Output

111110101110011001100101011011010101011010000001110101000110100010101101011110110110111111100100000001100011000101011011101110111001000110111101001110001000011010111010001000000101011110001000000111011101111001011110000000011110110001101100111011001001100100001101010010101111011110100110010010101111...

Second Run Input

Bob
01110001001011000000010111101010111010001000110111011001001000101111110010100011001111110011000101010010010101111000100111111111000010100010110000010001111100010000011001010110010100000100000111100101101110110010101001110011000111101010011101011110100001011111001111110110111010000100010111001001...

Second Run Output

010001111001010011101110010100001011001110101001111101010100110001111110110101011101010010100010110000010100101000101111100000011001110101010101101110010101010101100000000011110001110010111101000111001101010001101100110100011101010101011000001001001011100010010110011111000011111000010110111111111111...

Third Run Input

Clara
111110101110011001100101011011010101011010000001110101000110100010101101011110110110111111100100000001100011000101011011101110111001000110111101001110001000011010111010001000000101011110001000000111011101111001011110000000011110110001101100111011001001100100001101010010101111011110100110010010...

Third Run Output

53 86
90 71
86 87
28 4
71 20
24 17
10 77
26 37
87 21
62 6
97 7
83 76
93 87
13 62
48 98
62 81
77 22
100 98
3 57
26 58
73 92
68 3
79 44
31 37
47 74
73 17
61 45
96 40
61 40
71 54
68 98
57 39
15 55
17 29
56 53
81 64
12 77
18 96
92 86
59 83
100 65
86 86
10 22
54 46
84 8
96 63
23 34
73 43
98 98
47 74
34 6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #155:

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

First Run Input

Alice
001010100111011111000010100001010000000011101100100001100000000110110110010101100111001101100010000100001010110101100101111000100000010101111001001111010101001100011110111101001010111001001101110110000101010001001001100110000110011101110110101101100101101110001111001110001000101110001110010111...

First Run Output

001110001101011111010011100001010110001011100011001010011101111000110011001100110111010010011000100101111101111011000011011110011001100001011101001011100010101000010100001100111101101100101111011100111110000000111110110001110100001001001011111001000101110011111001011100000000010000001111111110110000...

Second Run Input

Bob
00110010011100110001011010001000011001110000000001011100010011001100001001110100000011000010101100111101001011101011111001100100011011111011110101101101111000110101100110010000110000110011101011010100000100000001010110110110101010011011011110100101011000011011001011011000101111001011101011111010...

Second Run Output

000100011011000011000101101010011011110111100000000010001000100010010111101011011111011011111001011011011011000000111010011110001000001111011000001100000011100101101010111100010100111110000011101011010000100101100001101110001100110011101000101011001001111110101101011011101011010110001000111111101100...

Third Run Input

Clara
001110001101011111010011100001010110001011100011001010011101111000110011001100110111010010011000100101111101111011000011011110011001100001011101001011100010101000010100001100111101101100101111011100111110000000111110110001110100001001001011111001000101110011111001011100000000010000001111111110...

Third Run Output

39 2
89 53
57 59
26 85
59 32
75 33
44 31
43 46
87 15
15 27
81 22
86 80
44 27
12 94
89 95
22 68
72 64
89 13
89 33
30 93
27 46
29 37
79 94
81 85
2 83
80 58
43 78
61 99
98 28
51 51
13 24
14 1
8 3
62 44
71 13
87 27
33 31
41 93
55 16
36 38
38 75
93 79
41 51
8 4
42 34
13 54
92 55
75 80
54 85
26 29
42 46
6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #156:

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

First Run Input

Alice
011001000101000000001000011011101001011101101101010000011000000011100001010110110100101011111010110101101001110110110011010000001101100110100000101000001001001011101111000001110100110101001011110010011010011110010011111101110001010011001100000011011011100100010001001011000000111111011100010101...

First Run Output

010101011101101001011101100100011001000100010101001001101000001100111110011010000000101101111011100100111000011001111100011111011101110100001100101111101000110101010001100001001010011001001111111001010100111110101010000100101110010001010000111111011000101111110100110111000011001000010111011110101010...

Second Run Input

Bob
10001011000011011010010010011110011110010100111101000101101001101010110110111000110100010111110110110010111100010000101111110000010111010011101011111010001011010100101010000001001101111011011010100001110011010101011010011000110100010000011101100001010001001011111000000011001001111001000110110100...

Second Run Output

101010111101100110011101110000001000010101100010011001011100101101001011010000001010100101101000111100101001010110010110101110011011001101001100010000000011110100000110011110001001010010011010100011001111110111110000010111110110101101001110101000000011011001001000111110011110011111100101111001110100...

Third Run Input

Clara
010101011101101001011101100100011001000100010101001001101000001100111110011010000000101101111011100100111000011001111100011111011101110100001100101111101000110101010001100001001010011001001111111001010100111110101010000100101110010001010000111111011000101111110100110111000011001000010111011110...

Third Run Output

1 48
15 38
1 53
40 98
29 39
63 59
8 24
10 14
60 71
86 100
71 73
27 16
89 42
29 95
65 36
94 63
75 59
67 46
19 65
5 79
32 71
49 49
22 9
17 43
78 60
1 48
61 6
92 30
24 66
14 92
2 3
82 19
63 35
40 4
63 67
77 76
40 37
97 40
41 91
52 100
81 32
7 24
41 38
91 22
39 49
55 41
1 100
75 93
31 94
40 63
69 19
31 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #157:

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

First Run Input

Alice
110000010111010010000011100111110001111000001010010111111010101101111001111110011001011000000011011000000101000101110100110110110000110110110101110101111111100110100000000000000111100011110011100110010110101110101111011000000010111110000110000110100100001000010110100110000101110000000001110100...

First Run Output

110110110001101001001000111011100001111111111001110111011110101010100100101011110111001101000111111010101100110010001010000101101110001100111000011011100000000001000100100010010001000000000011101001010100101010011001110100010000001011111110100110100111001011001101110001011001010001000111111101000001...

Second Run Input

Bob
10011101110011011010100111100011110010111001001101010110100110100000000110110100101101101000011000110001111101001010011110101010101101010100011011111001000101011000111101111010001010001011110100000010011011010010110010010001110000100111011100111000111011011011100110110010101111000111100011001101...

Second Run Output

101111110000110111001100001011110001010000111001101100000011001001101100001100011110100110111101100101101101000110011101111011100100000010011110011111000010010110010101110011001100111100100101100000000001100110000001101011010110111111101101100010101011100001110001101110110011011011000110100000001010...

Third Run Input

Clara
110110110001101001001000111011100001111111111001110111011110101010100100101011110111001101000111111010101100110010001010000101101110001100111000011011100000000001000100100010010001000000000011101001010100101010011001110100010000001011111110100110100111001011001101110001011001010001000111111101...

Third Run Output

81 69
62 100
66 44
77 18
43 29
63 72
45 83
23 55
18 24
77 33
88 21
11 38
5 5
63 2
1 9
84 66
96 70
73 42
20 18
36 93
99 60
14 17
59 66
2 67
78 81
19 1
73 48
96 4
23 22
11 46
21 47
51 2
6 12
30 32
69 30
28 39
84 60
77 25
79 72
83 86
88 68
50 60
16 55
60 49
36 52
22 43
51 77
68 23
52 96
31 24
63 77
60 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #158:

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

First Run Input

Alice
010001011100001011010111110110001011001000011111010010001011000110110001100001111000010001111011100101110111100101111000110101011010100001110111110010100110011111011110010010001011100010110011011111111100011010010011001111000110101001011100110111010001010100011101001111111100111110010101000101...

First Run Output

010111011001111100101111001110010101111010011000010110010000100010001001100001110100010000101000011110101111011100011101111011000010011111101110000101010001011011100001100110110000101101001000001001011101010000000101101001110011010100000110101001010110010010000001110100111010100000000010001010110000...

Second Run Input

Bob
01110010111110010100110010101001111000110111001011101000100011110111110101110000010111011011010101111110101111110010011100011100000110100110011110101000111011101110100110001011010010110100001001101011110110000110000101001100001100110010100001100001111011010101100111100100000001101011010010111111...

Second Run Output

010100010110101000000101110101001011111010101111101001001000100100011100001111110101010101010000000100100110001011011011111101111011011010110010100101110111000111010100000010000010100101011100110011000000100101111011101011110010001001011111101001110010111001111001111101011011010100100011101100001100...

Third Run Input

Clara
010111011001111100101111001110010101111010011000010110010000100010001001100001110100010000101000011110101111011100011101111011000010011111101110000101010001011011100001100110110000101101001000001001011101010000000101101001110011010100000110101001010110010010000001110100111010100000000010001010...

Third Run Output

4 33
24 68
99 2
38 100
18 95
58 12
46 7
40 27
10 74
68 4
24 86
67 77
37 26
91 99
79 58
17 22
42 54
30 8
31 35
79 23
5 24
93 22
4 26
40 45
73 98
99 18
18 89
87 60
96 19
13 26
42 84
96 23
68 75
45 92
2 4
98 36
32 44
85 42
57 88
42 6
92 72
84 35
39 72
14 18
72 45
85 48
87 12
85 70
13 11
69 29
14 15
87 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #159:

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

First Run Input

Alice
011000101101010111111000111001010000001000111101011110011100101011000110110100011111011111111111000101011011110001000011100001111011110011100010011000000101010010001011011101011100011101111011010001100100010101111010010111101100100100001101011001000110111000000001011101011111010101101110011010...

First Run Output

010111011100010101101101000000001100101110011101010101101000100101111011011011011111001011111111001101010100110001100110101100100011100111011000011111001101101010101000011000111111101011100010111000000101110010110001110100100110001111110000101010001100111110100011000000010000101001001101111101100010...

Second Run Input

Bob
00001110111110011011101010001000010011011101101111001001000010001001001110101011001111100010011011101111011111111111011000110100001111011010110001110000010010111101010000101001101101001000001001101001111111111100000101010001101111011010010010010010110011111011001010010111111111000001011011011110...

Second Run Output

001110111010001011100001011100110000110000001000010110111111000001010111100010010010001010010010111011010111010010101100110100101011111101000111001000111110011010001101010100011010011101011010111011100000100011011111100110000100110100101000001000011111001011110001111110001100100110100101101001011101...

Third Run Input

Clara
010111011100010101101101000000001100101110011101010101101000100101111011011011011111001011111111001101010100110001100110101100100011100111011000011111001101101010101000011000111111101011100010111000000101110010110001110100100110001111110000101010001100111110100011000000010000101001001101111101...

Third Run Output

89 16
49 70
43 83
16 74
13 16
17 82
2 20
59 9
15 79
32 46
50 33
28 23
87 25
27 52
90 71
17 28
93 67
31 16
1 70
85 21
46 6
34 39
80 27
80 38
86 91
36 88
92 57
29 15
52 3
37 11
17 66
83 71
96 44
65 33
9 79
85 68
12 70
6 72
74 53
6 73
92 38
43 99
92 79
68 63
43 31
82 75
18 45
33 99
54 91
36 97
78 70
56...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #160:

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

First Run Input

Alice
110111000001010001010111110011000101110110101100011010000000100001010001011100000001000110101101000111000101001101100010000000110100000100111100101011000111010001100100101000010010000010100111000110001101001111111010111010100111010001010010110100011001011110100011011110111010001100011100010010...

First Run Output

111001110010101111011100101011111101101101100000101100001011011100111010011100001000110111001101001011000100100111000000101000010001111011110110011111000110001101110000010000110111101000010000000001100101111110100101001110000000101110110011001110011101001011001011011011011000011111100000100000011001...

Second Run Input

Bob
00010110011111100111011101111011011000001001010110001101011110110110111101101110011010101010011101100111001110101110001000100011011110001110111011111101111001111011100100010011100011110001010011111101000101111000101111011000101000011001000011010111110010001001101001000111010111101111001100111111...

Second Run Output

000101000100101010111001010100001101010001111001110101110100110001101111101111101000100111011100111100001001001001000100010001010111100001011000001010010000110101010110010110001101110110100110100000101000010110111011100010001000001001101111101010101110101011110001100010100000111110010000010001011010...

Third Run Input

Clara
111001110010101111011100101011111101101101100000101100001011011100111010011100001000110111001101001011000100100111000000101000010001111011110110011111000110001101110000010000110111101000010000000001100101111110100101001110000000101110110011001110011101001011001011011011011000011111100000100000...

Third Run Output

61 72
11 73
83 84
100 16
88 32
48 62
17 57
46 89
66 13
52 18
9 47
53 10
11 45
96 56
21 44
84 100
21 23
25 11
82 34
74 89
94 85
48 30
29 4
60 21
54 46
73 66
1 96
24 4
5 70
56 31
30 3
18 22
34 87
31 70
48 68
65 63
71 67
61 64
44 20
89 69
33 26
54 90
52 83
16 96
33 71
61 26
21 9
9 17
28 88
20 66
93 43
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #161:

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

First Run Input

Alice
011101111000111001110111111100100111110110001010100011001100101010010110001011111100100101000000111000101011011000111011101111010010001000010010111100011110011010011010001000101001101100110100100011111100111101110001100010101101110110110110111101011010011100110101101110111100011000110000101110...

First Run Output

010001101100101100111101001001010011110000101011011100111101011110100111110001101111100001011011111101100101110000010011110001000000101111101111100111011100111001000010110011101000001011000010111001101001110011111111000000000111100000001011011110011011001111000001101000010000100011011101001110000110...

Second Run Input

Bob
01011000010010010111101000011010011010010000001100011101001111111010111000001000010100010011101010001010110110001010000001000001010000110101110111110011001111000111011111110001000101110011110000101010001111011011100001101110101010000100011010001100101101001110010001010100001101011100010011110000...

Second Run Output

011100101111111011011011110110111011001101111100000111001101100000000010001001110110111101100111100110101010100011100100000110011010000011110111101011101110110000100101001010000101101101111010011011100001011101101000011100101011000101010100110111010000000110111101111001010011111111010100110110000101...

Third Run Input

Clara
010001101100101100111101001001010011110000101011011100111101011110100111110001101111100001011011111101100101110000010011110001000000101111101111100111011100111001000010110011101000001011000010111001101001110011111111000000000111100000001011011110011011001111000001101000010000100011011101001110...

Third Run Output

68 57
38 41
100 92
55 71
28 29
28 48
40 34
60 93
60 25
81 11
15 81
78 80
96 79
76 88
20 50
5 62
64 64
67 78
32 26
25 7
64 10
40 25
63 91
16 88
60 91
83 37
94 91
17 79
63 12
61 46
54 20
96 51
87 35
83 15
60 20
84 27
21 35
67 24
40 3
64 1
80 80
30 71
78 95
47 92
48 74
84 42
9 69
89 31
59 32
95 25
76 6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #162:

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

First Run Input

Alice
101000001010111011101010101110100000101100000011101011110101101100011100000011000111110011000011001010101011100000100010111110110010100010110001100101000101000001111110011010011100111111100010010100100011010100011110011000000110100101110011011101000001000000101010100111001111110011100100101000...

First Run Output

100010100111110100001000011101010101110000110110000110011001011100111011110101100000101011111111000010111001101111100001111010101001101001011001111101011000111101000011101111100111111011110111000010001010101011100100000001110101111101101100000001110101100110010010110010001000001000000001011110111110...

Second Run Input

Bob
01100010011001000010111000011111100010001100110010111111010000001000011110110010000001001100001001101111011111001100101100110000000011000001010111001111111100010111010011000010011010110111101101111000011011010010111001000100101011100000100101110010101000001110101111000111010110000000110101100101...

Second Run Output

010100101010111011110001101100100110011110011010100111001001000110100011101100110001000101101010010011010111111101100000111101011011111101111010000111110111100110110111001101011000100100100100010011101101000110001000011111111100010011011101011100111010010101100100100010011010000111110000100011001100...

Third Run Input

Clara
100010100111110100001000011101010101110000110110000110011001011100111011110101100000101011111111000010111001101111100001111010101001101001011001111101011000111101000011101111100111111011110111000010001010101011100100000001110101111101101100000001110101100110010010110010001000001000000001011110...

Third Run Output

40 41
64 44
26 44
80 5
65 67
33 74
61 66
72 93
55 66
16 5
47 13
91 97
23 80
83 1
65 22
2 57
85 87
89 73
66 49
49 27
44 46
100 69
75 30
41 45
62 1
27 50
60 11
10 15
28 88
91 4
15 13
40 98
72 16
51 87
24 90
42 90
59 85
61 98
71 25
70 1
62 11
40 36
22 32
36 63
10 98
38 6
2 87
78 11
30 59
51 46
57 75
87...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #163:

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

First Run Input

Alice
101101011100010011101100111111000110001011111011110110110110110000011001000011101110000001010001010110001001101111110001100000000010011011001110000001101111010111110110110010110000000100011110010110110100000111100000001111100110000001000011000001011101111001010101010010010101011101101110010111...

First Run Output

100111010110011101001111010111011010001000100010001101000011011001000010100111101101001110101100111111011011011000011010010011110000001001111101101100010100010001101001100111010001010101000001100111000010010111011110100101110010111111000110101110111101100010110001001001110011010110110010110010100101...

Second Run Input

Bob
10000001011011011111001110011110110101001110111100111101101101010001110000000011110111000111110101110001110111101110000110001110101100001011100100110110101100100110111001101011100010000001011110011001111001111101000000011001011010101100001100100101001000110011111111010000101100010010111011011100...

Second Run Output

100110000100011101111111100110000010000000100000011011111111100001100011011111011011111101100100111010001100110011111111001111001000101011011000010110000001010010101000110101011100010011011010100110010010001101010111000000011010110110110100010001000110110000011011111111000101011011111100100100010001...

Third Run Input

Clara
100111010110011101001111010111011010001000100010001101000011011001000010100111101101001110101100111111011011011000011010010011110000001001111101101100010100010001101001100111010001010101000001100111000010010111011110100101110010111111000110101110111101100010110001001001110011010110110010110010...

Third Run Output

6 37
71 89
14 77
17 67
4 97
58 97
56 51
15 77
76 21
20 71
85 77
44 94
40 10
97 87
86 98
100 61
37 66
19 57
45 1
45 27
62 29
96 53
51 44
6 81
73 58
83 88
41 72
48 94
93 37
87 75
27 33
45 19
4 26
68 96
79 57
22 18
56 79
35 96
39 76
56 29
7 77
89 62
41 22
77 57
34 50
84 93
67 10
35 29
13 54
46 75
1 86
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #164:

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

First Run Input

Alice
010101010100110011011010010000001101000111110101101111000001001101100001110101101110110111010111011101110100111100001110110110001110110011000100101011101100101000101110001011100000001011110000001101010001011110000001000010111111111101110101000001000100001101010101010001100110011001101111100100...

First Run Output

010111000101100100100111011001111011100010011110100110100110010011101010111011111011110000111100101001010110011101011100010001011011011000100010000100000011111011000000101100010001011111101101111001001010101101100000100010101111110101011011010101011011110001101000110110101000000100001101100011100010...

Second Run Input

Bob
10101101000101101001111011100101000111010000011010011000100100000101010000100111001000101100010000000100001001111011011011001010100010110110100101110011001111011101010100100010111110111110101011100111100001111001011010101010010111011010111001101111100100100100001101011000011100001111000010000001...

Second Run Output

101011100001000100010011110101110011001111110110110010010011111110010001011111110111110111010000100100101110011101011011011100111001110111011010000000001100101000001100010110111010001001011110001000011101011001000000101110001110110010001111010010101111110011000010101011010111000100001110100100000000...

Third Run Input

Clara
010111000101100100100111011001111011100010011110100110100110010011101010111011111011110000111100101001010110011101011100010001011011011000100010000100000011111011000000101100010001011111101101111001001010101101100000100010101111110101011011010101011011110001101000110110101000000100001101100011...

Third Run Output

72 62
19 3
63 62
99 55
78 52
85 78
75 88
57 9
27 61
86 8
3 36
38 76
75 14
94 96
82 32
39 54
82 42
32 6
23 54
8 70
48 15
85 47
48 57
52 30
88 44
38 99
95 29
37 71
12 60
6 37
83 92
81 20
78 65
96 90
7 52
2 69
49 66
92 24
36 19
3 39
10 95
86 86
93 59
81 21
81 50
14 100
84 28
99 20
43 14
23 79
42 86
30 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #165:

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

First Run Input

Alice
110010100111011110110101010110111001001000011101100001000011111110010001110001000110110010100000001110011110100010100011111110111101111110001111100000010001110010111100110110010000110111000101111011011111011111101111001010001110000111000100011100100000101010111000100001000101101010101100001001...

First Run Output

111111001111111110101001001101001101111101111000011011100000110100010000100100000001011011010010111111111011011110101101010000001010000010111111010101011100101101000110010011111110011110101011101111001011000110101011100010001001000110010001110100000010001101011001100010001110001010111010001100011011...

Second Run Input

Bob
00001110010001011010101011000111110000111111111011101000000100000110011101101101001101001000000110001011111111110001101000010000100000011110011000010110101011001101011111000110011000110100111101111101011111110110001110111011111011001110100111011011101000110001101001011000110110000100100100011110...

Second Run Output

001111010010011100100001001011010010000110011011110111110110111110110010011010100011000001110111110110011011100011110011010001010000001111001011001011010010011000000111110100011000110110011110010100000011001101110001010110110101110011110010101000000011111001000100001001010111011110111110100010111000...

Third Run Input

Clara
111111001111111110101001001101001101111101111000011011100000110100010000100100000001011011010010111111111011011110101101010000001010000010111111010101011100101101000110010011111110011110101011101111001011000110101011100010001001000110010001110100000010001101011001100010001110001010111010001100...

Third Run Output

29 24
22 25
67 84
96 38
57 28
94 5
88 91
89 25
4 73
24 54
64 47
41 39
46 37
32 84
37 95
44 38
41 7
21 10
86 89
73 7
95 75
100 49
52 34
69 33
39 65
2 93
50 56
83 51
95 92
31 29
76 38
49 79
18 80
61 68
67 97
46 33
15 30
12 48
84 12
86 30
32 6
75 84
99 55
30 92
71 97
46 11
5 4
61 38
71 7
72 18
23 89
37...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #166:

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

First Run Input

Alice
111110111100111101000000100001010011110001011001101100101101001111101100000001100110111100100000000100001011001000110111010110111001111001110100101110000101100100110011110010000100100110010100100110000111001111100011010001101010011001111001111011011001111110011001010100100001010100011111111101...

First Run Output

111100101101111011001000000110111110110010110000011111100111101011111000000001011001000011010010100111010100001101110100101101111010110011010111101111011101000110010001011010101000110100010001001101000100010110110000011100110001110010101110000011100000000010010100000010000111100001000100110010111111...

Second Run Input

Bob
10101010110001001011000111110101010101001011001101110111011010111110001101101110101111001110100101101010001011101001010100000100100001110111001111011110111100100010100101000011011001110000000101110010011011001111000110000011001000011101111110101111100110110001001011111101110011010001100111000000...

Second Run Output

101111011010110001010011001001101110101010101010001100101010111011000101110110010010111001010001101111100010001011001010010000100000000101110100111010101100110100111001001001110001111101001001101001011110111111000110001110000001111111110001110100011111101101111011110110010001001011111001010011100100...

Third Run Input

Clara
111100101101111011001000000110111110110010110000011111100111101011111000000001011001000011010010100111010100001101110100101101111010110011010111101111011101000110010001011010101000110100010001001101000100010110110000011100110001110010101110000011100000000010010100000010000111100001000100110010...

Third Run Output

62 92
17 7
91 72
20 81
30 48
9 21
73 36
57 18
97 24
98 72
30 7
13 75
69 47
93 38
24 51
34 84
28 91
70 15
48 93
15 65
75 78
28 70
91 100
32 72
34 61
5 84
54 7
85 68
41 34
37 66
10 64
45 40
56 49
73 21
62 38
41 61
31 19
11 81
39 76
66 67
68 16
44 52
40 21
56 92
74 50
76 54
23 46
9 44
4 40
10 79
50 24
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #167:

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

First Run Input

Alice
101101011011010100101101100010000010010001100111101000010000000000111110110000101011000111101101000111000010101101000101011001111010000001111000100101000100100111110001001001011010111100111111111011010111011100101100101010001010011001110011101101010010000111010001011010111010001001000110111000...

First Run Output

100000000011101011100000111110101101010001011000011110000110110001100001011001101100111100100101101111110101111010001000011000101101000000000001110111100111111001110100011000110000010001010000110000000110011000010001011011100111100111101110011111001101001111011111101111101101001001111010011001110010...

Second Run Input

Bob
10011110110011011001000001011100110001010010001001100000001010111011010011000111000011101000111010100001101010010111101010010011110010100011101010010011001000100110010001001000001110011010110110111000010011110100111111001110101111010111111011111101001111110000010110010101011011111000001100101011...

Second Run Output

101111011000111000000101101101000110101001010101000111101100101010011111100101111100101100000110111110011111001101001111001110110011101011111011001011110001100100111111100101100101101111001011010100011011111010000011010101000100100110101001010011000100011011010010001000101100101011111111110100000001...

Third Run Input

Clara
100000000011101011100000111110101101010001011000011110000110110001100001011001101100111100100101101111110101111010001000011000101101000000000001110111100111111001110100011000110000010001010000110000000110011000010001011011100111100111101110011111001101001111011111101111101101001001111010011001...

Third Run Output

38 22
88 11
18 58
9 97
82 42
3 83
80 50
11 37
17 22
29 39
85 95
9 1
96 7
52 33
80 33
26 53
32 19
77 54
94 49
2 93
12 19
28 94
52 69
14 60
96 63
51 96
37 73
46 49
26 40
9 1
39 63
50 50
55 35
9 47
31 45
80 63
97 83
94 79
2 100
64 21
60 54
99 100
91 6
83 2
80 38
91 70
41 27
49 44
88 26
2 76
14 32
29 71...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #168:

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

First Run Input

Alice
001100100101000101100101001111010101110111000101001110011110110110011101111101001101001000001100000110010101111001001001111110011000101010100011001001100010010000111101100110001101101000011100001111101111000100000011101001011101110110011110010110011010000000100011110000101000011001011000010011...

First Run Output

000100101111001101011111101011001010110011000100110110111110111011010101001100000110011101001000101001000001000100001000101010101001010000111101110010100001011010000111011111110011000111010011001101011011110110111110110100010101000100000001011011010011011010011101000101001000000001001000011001101001...

Second Run Input

Bob
10000010011001101101001111110111100110011011100001001011100111110011000001010000100101110000100111110101001011101101101101011100100000000100011100110100101101110001010100100110001101011111001011001101101100101111000011001011011101011011110001000011011011110110011111110101110000100000010010010111...

Second Run Output

100111110001001100101101010000111010111110000001010110010100000110001011010100000011100111100100010011100011111011100110001000110011000011111111011010100110011011110101010111011011101010100101111110011100010011000101000101001010001111011010011011101000000100110001000100111111110001101100010010111101...

Third Run Input

Clara
000100101111001101011111101011001010110011000100110110111110111011010101001100000110011101001000101001000001000100001000101010101001010000111101110010100001011010000111011111110011000111010011001101011011110110111110110100010101000100000001011011010011011010011101000101001000000001001000011001...

Third Run Output

18 88
54 58
21 57
23 85
78 18
15 75
4 30
3 62
96 45
62 98
55 48
51 29
88 27
17 43
27 90
5 17
5 47
99 39
70 98
63 97
98 23
96 24
12 81
2 24
54 16
65 62
94 4
82 78
72 22
86 15
6 68
75 43
39 92
28 61
38 92
65 33
16 43
73 69
7 7
86 39
10 85
15 44
19 7
71 71
83 37
51 28
82 54
89 80
4 89
12 61
74 6
15 66
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #169:

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

First Run Input

Alice
100010101101101010101111001011100001101101000010010101010111011000110110000010010011110000111000110111111111010110000010100101110010010101010111010100011111101011000101111110001000110100001111001010011000010011000000010100111110001100111001100000011100110000100010101100101111111101010110000010...

First Run Output

101110110010011100011101000100110011001101101001111010011101001111011111111111011110101100111101000010001011101100111000000110001101010101111010011011111100010100110110111010101110101100100111010110101101101000010101011011101100100011111001111000010100101101000110011000001111101101100100111111001010...

Second Run Input

Bob
11011110011011001101010110100011101100110011100011100110000000101100110101111110110011111010001001001101110100110100101100110101000010100111000001100101011000111100101000000000010101000101010000101100110101110100010011000111001011000000011001100011101001011101000011001000000101011011100000111010...

Second Run Output

111110011110001010100101111101001001111101101001010101010000010110101100011010110101101110001010000100000010001000111101111100110010111100001100100101010001101010101000100101110010011100100101000100110111100010011001100110100100011011011111110101000001111111110011101111010001110111011111101001111111...

Third Run Input

Clara
101110110010011100011101000100110011001101101001111010011101001111011111111111011110101100111101000010001011101100111000000110001101010101111010011011111100010100110110111010101110101100100111010110101101101000010101011011101100100011111001111000010100101101000110011000001111101101100100111111...

Third Run Output

15 67
30 75
4 79
57 5
18 5
35 91
58 82
100 63
58 7
31 44
78 43
81 5
78 8
58 97
74 48
35 30
28 43
4 88
9 2
79 24
94 78
2 100
65 8
95 70
30 63
63 62
64 37
61 42
98 65
91 9
72 100
89 38
100 84
66 71
38 35
30 1
100 14
85 54
59 79
36 18
4 65
48 31
75 30
48 7
56 40
63 12
31 69
41 82
74 10
12 12
93 67
87 6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #170:

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

First Run Input

Alice
011000110011010100111101010111011110011100111011111101000001010000111000110100010010111111111010011101000011011110101101010011011001100011101010011111010110001110100111110110100111011011000000001011000000011011010110010100010100011111001001010000001100101010011000000111010100100100000001000011...

First Run Output

010001010001011110000000111001101010011000000110000101111011100001010111100111010111100010011100001111101100001101111011111000101010111100000111001000001101111111100010000000111101111001010001010000110101110010011110111001011000111100110110111010101111010001111010000111110001110000100010001101000000...

Second Run Input

Bob
10011111000001011010100101111011001110001111011110010011111001010001110001110100111000011100000101101101011010001110010100001101111000100000001101001010010111110000000110000110001110111001101110110011001100111101001100101010000010011011011101000010000110001100100001111010011110111001110010010010...

Second Run Output

101011100110000010011111010110010101010011011011011111101101010011001001010110001010111011111011010111001100111000001011010101111111100110101101010101011111010110010100100100110000101110011100001011000111010001000000010110001001000110101010110011111011111110010000111100011011111101110110000111101010...

Third Run Input

Clara
010001010001011110000000111001101010011000000110000101111011100001010111100111010111100010011100001111101100001101111011111000101010111100000111001000001101111111100010000000111101111001010001010000110101110010011110111001011000111100110110111010101111010001111010000111110001110000100010001101...

Third Run Output

100 34
39 72
71 56
45 46
97 13
2 6
42 50
8 7
1 40
17 24
75 20
76 52
78 92
1 88
15 36
73 84
38 40
68 76
82 80
71 1
37 64
13 86
24 70
92 77
72 68
20 19
84 79
84 23
25 7
78 88
87 65
66 77
90 79
56 75
29 54
55 27
91 92
9 85
32 18
19 78
4 21
79 72
9 22
33 48
16 81
30 98
29 38
16 10
5 95
57 68
97 96
88 66...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #171:

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

First Run Input

Alice
011101011011110110100001110110111110110111100100111110111000100110000100100010100101011111000101011010100010001011110101100110001101111010111110000001110011101011011010011111111101001010110010000111111111000101111100000000010101100110001111111100011011110000011111011110111100000100000010111000...

First Run Output

010011111110011101001111100001011010111100110010010001001111101001000010110010110101110001001100110001101100010111110010001101001011111101101011001011110101000101000110001001101111101101101011000010001110101001011011000100001001010010010011011101001111110101011101000000001100001001010100000000111111...

Second Run Input

Bob
01111100110001111111000111011011111100011010011011101111110101011001110011000101110111010100011101110110101000011010100100111010011100101100101101011101011010010110000111011101011010100001000010011010110100001010100001101110011100101111010100100010010010000100000101000011101101011101011110100101...

Second Run Output

011111011100011100101110000000011111010010000010100001010100010101000010101010001010001110001111011011100000001101011110110101011100000000101101010100010110010011001101010110100010001010010000110010011110100011100110011001110000011010110010010110110010001111010101111110000010001100111101000110110011...

Third Run Input

Clara
010011111110011101001111100001011010111100110010010001001111101001000010110010110101110001001100110001101100010111110010001101001011111101101011001011110101000101000110001001101111101101101011000010001110101001011011000100001001010010010011011101001111110101011101000000001100001001010100000000...

Third Run Output

35 92
4 69
72 13
47 57
67 28
92 47
62 66
72 87
97 65
24 17
13 92
78 71
49 86
66 1
61 31
21 64
20 15
39 44
50 62
54 18
96 92
85 78
23 41
5 79
49 28
77 84
67 69
68 32
8 87
89 5
70 64
76 5
46 88
18 55
83 35
85 72
2 30
57 88
85 49
80 92
45 63
19 3
86 62
77 21
86 84
55 12
68 4
94 83
83 21
60 77
69 38
8 2...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #172:

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

First Run Input

Alice
101110000110001111000100011100010010011101000100001000001111111101010000101010110101110110110111000001001101001010101000000111100011110010000010011000001100010001011010011110001001100000010101011101000100001001110011110110110110000101101101010010101001011000111000110010101101111011011110110101...

First Run Output

101111000100010101010111011100100101110101001011101000000111100100110101011101111111011111000100101010101000000101001011100101001110001010010110101110000011101100111101110010011100101011110100111001011010011101000010111011010100000001111010011101111010000001101111111011110101011101010001101111100011...

Second Run Input

Bob
00100110100010000000110010100100111010101000101001101010011110010101111000010111110100110000100111001001100101001100101101111001111111010010110100001111010111001011100001100111100111000000111110111010111111110110100000011001010111110011011100110011000111100100101110011100001100000101111100101011...

Second Run Output

000000110111011100001110100100001100100000000011101100101100010111100110101001011101001101011011000101001010010111010000011111111000010001111001110011110001010011100111111001011010010010100011101101110111001001100110011010110100111111001011100100011000010100100011000110100110100011001101001000010110...

Third Run Input

Clara
101111000100010101010111011100100101110101001011101000000111100100110101011101111111011111000100101010101000000101001011100101001110001010010110101110000011101100111101110010011100101011110100111001011010011101000010111011010100000001111010011101111010000001101111111011110101011101010001101111...

Third Run Output

39 68
23 98
22 63
39 2
76 23
86 38
49 3
96 6
50 35
84 6
53 35
79 98
7 8
31 64
20 3
15 3
97 8
56 63
66 92
19 69
54 5
15 74
52 18
45 96
54 58
84 44
40 86
39 71
44 48
100 93
88 40
63 32
59 32
87 16
79 42
75 73
44 71
53 1
9 46
28 56
22 20
86 78
26 94
31 20
78 69
34 53
25 2
46 100
93 84
66 68
5 1
54 41
2...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #173:

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

First Run Input

Alice
110001011000101101100010100111100000000011000101110101000010010000000010100001110001001010001000000010101000010111110000010110101001010010000010001111100010111100111011101010111101000111111110001100111101000011010111100001001111011101100111110010000111100011110011001010111101000101011110000100...

First Run Output

110000010011000110000000101011010000001101100010100110000101010110110001101100100001101101001111111100001000001110110111100000011100000100001011010101010100000001101111101010010011111100010111111000101101011001001111111110111011101001000110001011000111001101011110010011110110111001111100110111000001...

Second Run Input

Bob
11111110110100110110011011110010011110000100100101100100111000001000011011010101111111010110011000010101001100001110010001011101100000011011101110010000111010101010011100101111101101101100010111000101010111000100110001111000101010001101100100110010101001101111111010100010110001110011001111010101...

Second Run Output

111101111101100011000110111001001100111100101100100101110110100000100101010011011100000110001011001101011010101000100011101010010000111010100110001110100100101111110000011011010111011001000010011100010000010011100010011011110101110110101111000111111000001011111000000111101000110001100000000010010010...

Third Run Input

Clara
110000010011000110000000101011010000001101100010100110000101010110110001101100100001101101001111111100001000001110110111100000011100000100001011010101010100000001101111101010010011111100010111111000101101011001001111111110111011101001000110001011000111001101011110010011110110111001111100110111...

Third Run Output

83 40
44 86
3 22
4 74
43 31
53 7
37 67
74 25
42 97
27 65
70 51
98 59
66 55
8 82
1 41
8 73
26 50
16 44
43 44
16 48
52 48
34 42
48 76
67 71
6 49
34 59
83 22
87 85
96 92
37 74
61 28
20 95
87 33
76 39
40 42
94 48
1 25
67 33
25 16
51 85
37 26
76 83
41 14
40 26
61 97
7 32
74 27
15 96
4 5
65 65
76 32
5 53
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #174:

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

First Run Input

Alice
111001110101101011011100100100000101010110000010101100111010100010101010110101010001010101011011100001110111010001110100010101000110000000101011001010010100001101101011001100100011001100001010001011111101011010110000111111011011110001111110111111100010110011110011100100100001001000101100011111...

First Run Output

110110001001001011000100011000110111110111010111011001000100011011011111001000111100110100111010001100001111101001000010000011100010100101010011000100000110101001110010001001100000111101001101000111000110000100110001010101000111001100111111000010100110110011000101101101111001110111100000100110010100...

Second Run Input

Bob
01100100110110000100010001111110001000100000000110010100000111011100010110001001000110100111100111110101001001010010100001100111100111001110100011010100000110010010000101001011010000100011101001011101111100111010000110101100010110110111010010110100100110000001111110100110100101100011110101000101...

Second Run Output

010101001001111101110111101010010100111111101000000100101101011010101011011000001111111101000100110011000011011011110101000011001111110001101001011001010001101111001001101000110010110100111100011100101101001101001111111110110111111100101101111101100111101110100001101001000001000010001110110010000110...

Third Run Input

Clara
110110001001001011000100011000110111110111010111011001000100011011011111001000111100110100111010001100001111101001000010000011100010100101010011000100000110101001110010001001100000111101001101000111000110000100110001010101000111001100111111000010100110110011000101101101111001110111100000100110...

Third Run Output

35 27
45 32
20 52
100 28
99 80
45 46
93 37
67 59
78 32
62 4
32 45
58 48
86 4
45 12
71 82
46 46
22 90
98 47
55 42
44 64
17 76
84 86
9 42
14 21
43 74
26 12
15 48
22 13
2 87
31 59
72 84
12 25
52 64
18 63
37 55
84 10
65 29
94 22
89 3
53 60
6 8
47 75
64 36
37 4
28 85
49 51
30 47
90 5
68 33
42 14
23 60
45...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #175:

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

First Run Input

Alice
000001010111001111000100000011110001101100011011001100000000101110011100010101011111011010010111110111101111001111011010000001100110100110100111100011101000110010100010100101001010001101111110110010011001100100011100111101110111010101110000101000001100110100100101001110100111000100001000000111...

First Run Output

000110101110101100000011010110000110000111001111011110100010000001100111011111110001111110101001111100010110010000100000000110110100110001010000011101110010111111000100010100011010111011011010010101000000111010110000001110010101011000010000111110100011111011101100111001000000001010010111010010101111...

Second Run Input

Bob
00011100100001100110001001111111010011011011111110101111101010011111101010100000001011001111100101110000100010100111101110101110101011011100011110111001111001001001100010111011001100111110101010001011011010101001101001010001010001000011001010111011100101100011100011110000101000000101010111011110...

Second Run Output

001001101000101101101010000011001000000011101100110111111111101011011010101100110101010011000111100010010011000001101000010100010111010010000000110100101100000110111011111101001101011010101101110011101111111000101011111101111100111000111111001101111010101101110000001001101111101000100011100001001101...

Third Run Input

Clara
000110101110101100000011010110000110000111001111011110100010000001100111011111110001111110101001111100010110010000100000000110110100110001010000011101110010111111000100010100011010111011011010010101000000111010110000001110010101011000010000111110100011111011101100111001000000001010010111010010...

Third Run Output

19 6
84 69
90 42
19 29
55 89
95 10
5 21
66 15
69 89
58 27
78 79
67 43
82 89
56 2
59 32
19 39
66 81
19 53
87 17
60 76
52 95
81 87
28 18
38 31
52 53
25 9
87 11
5 11
41 100
48 29
66 12
90 15
40 9
18 37
20 25
68 1
15 52
56 76
21 62
77 3
85 62
10 27
85 85
38 9
94 70
63 31
62 62
65 99
27 77
72 96
55 66
14...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #176:

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

First Run Input

Alice
001110010011000110010010000011110011000100110010101100100010001110011000110011000100010000111100111101100000101010111000000110010100100011011111000001000000110110110110101100110010100011010001011001001111110111011000101100110000000001100111110111010110001001010110110001011110110011001000010001...

First Run Output

001010001100000001000101100001101001101000101001001011101000101001010001011111101010000101000011000101010111010000111100101011100010101010001000100011110100010100110111110100001100000011101000001111000110101001010101010101111100000100000100000101110010000011000100100101001011100111111010010101011110...

Second Run Input

Bob
01111000101000110011000110011000110010111101100001010010010000101111010010110101001101110111010011101000110110101101100011000101100111011110110000001101100010010000101011001101010011011000011010110000000010110110110101001101011100001111010100110000000101010111111101100110110110011011010000101111...

Second Run Output

011000111011010100101111011000110011011110101101001101110100111011101001111111100101101111100000101100011110100010111101011000100111001001010110001000011011010011111110101010010101011011111110000111010100100100010000111100001101101100111101110110010000110101111110010100001001101101011111000110010011...

Third Run Input

Clara
001010001100000001000101100001101001101000101001001011101000101001010001011111101010000101000011000101010111010000111100101011100010101010001000100011110100010100110111110100001100000011101000001111000110101001010101010101111100000100000100000101110010000011000100100101001011100111111010010101...

Third Run Output

54 3
84 31
40 9
57 50
68 26
20 83
24 24
54 49
96 69
55 76
54 14
35 3
6 91
34 6
3 43
59 69
7 53
16 92
51 86
65 9
47 81
12 46
37 22
98 23
59 98
1 2
26 61
6 95
38 35
86 9
28 19
3 80
71 44
33 57
56 91
61 7
27 18
32 68
24 30
99 67
50 22
24 23
78 21
1 27
21 50
61 94
24 40
26 97
60 11
18 100
37 11
56 87
82...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #177:

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

First Run Input

Alice
010001000100101011101110111111010101100100011000000000000011000100100101011100000111111101100000111001101000000101111010111001010111000111010000011001111000011110100111110100001000110101000001100100100001001110110100000001001001000001000101101010000010100101110111001111001101101011010101010001...

First Run Output

010111100101010001111011100110000101100110110100101011110100101001010010000110011101100110100110001000001111000100010111101110001111100001000110111110100011111001101111011111100011000011000100110110111000111000100111010110110011010001000011110101100101111000010111110111000001101100100010000101000001...

Second Run Input

Bob
11001001011001001011110101110001110110000010010110101101001000110100011001100101010000110010101100011000101111011010110100110101010001011000011110100101110011101110101101111111101111100100001011011100110100111110100011100011101111100100011001111111110001111000010001110000101000111111101111000100...

Second Run Output

111111100110111011111000111001100011100111110010100110100001100011000110110001010101000000010111011111100011110001011100110111000100111100001101010010110101000000010010110111010100011001010011011110001101001100011101010101111101000011110110010000101011011010111100011000000001011000010010100110101001...

Third Run Input

Clara
010111100101010001111011100110000101100110110100101011110100101001010010000110011101100110100110001000001111000100010111101110001111100001000110111110100011111001101111011111100011000011000100110110111000111000100111010110110011010001000011110101100101111000010111110111000001101100100010000101...

Third Run Output

90 82
2 76
22 38
6 49
51 99
80 17
10 8
75 20
31 22
40 99
96 65
30 48
63 15
54 23
8 56
39 17
77 72
92 53
56 42
72 75
33 4
67 81
99 75
83 69
11 25
18 92
30 16
66 49
54 29
97 34
42 3
9 49
26 22
92 86
2 89
16 22
70 19
18 32
8 62
67 4
91 5
86 95
65 51
31 14
100 19
92 41
50 37
76 5
39 66
57 42
7 34
36 41
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #178:

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

First Run Input

Alice
010111111100110111011001110011100001100001000011011000111010001011000001110010001000110111110010001010000111110001001101011010100101101100011000011100101001001011000010000110010001100101000011110000110111100010001100010110101111011001110101111010100100011110110010100001111101100000111001101011...

First Run Output

011111111011000110011001111111110000111101000000001011100001011000110100000000111011101011000111101110001100100110111011000100011011010101110011111110100101001010000101001010111100110111110100101101000110111001101011001010111010110000100100110000110011110111101101001110010011001010010010011100111001...

Second Run Input

Bob
11000100101100110011010010101110000011101111000101111011101000100010100000101100111000101111010111011100000001011011100011010000111000111110110001001111111011000001010010010000100001100000000100001010010000011100011110010010000000100111010111111111101011111110001001011000000110000100011000000111...

Second Run Output

110000110111001010010101010010010010011100010001111001001100111001110010011111110110101001100010100001110001011100110010001100101000010000100000010110001010011101000101101101010101110100110000111100000011101000011011000001011001111010001001010100011110011010000011110011111111011110010011110000000001...

Third Run Input

Clara
011111111011000110011001111111110000111101000000001011100001011000110100000000111011101011000111101110001100100110111011000100011011010101110011111110100101001010000101001010111100110111110100101101000110111001101011001010111010110000100100110000110011110111101101001110010011001010010010011100...

Third Run Output

73 71
76 37
34 88
15 17
4 13
1 90
55 28
37 98
10 39
61 71
10 35
9 6
47 27
87 17
73 68
11 30
94 17
85 19
20 39
90 63
53 22
17 4
24 14
24 57
70 44
66 20
68 29
100 58
70 87
88 25
20 41
1 36
83 46
36 96
36 70
12 11
96 42
91 5
32 94
44 66
21 27
9 20
54 67
48 60
80 23
21 5
40 3
97 63
32 7
19 4
45 8
17 55
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #179:

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

First Run Input

Alice
010101010110000101011010100000111110101110011001001000001100100111111000000111001100111010111110010010110001100101111000010000011000111010010100100010110101101011110001101001011011001011001011001010001101001010111010000000111001100110110101101011001100010000100011010011110000011010000110011100...

First Run Output

010100101111101001001101100101010101100011000001111011101010111111101011100010110100111001111100110100101000000010111100100001111100000101000010100100111110001101111110110000111111001100001111011111101010011001010100111011001000001101110110100111100101101010100010010101111010011100100111101010100000...

Second Run Input

Bob
00001100000001101110100011111100101111100000100101100100110000111100101011100010100000000011001100100001011000100000001001111010000011011100111100110010111110000110000100110111100111011011000010010001100001110000011010101101111010010011100101001110010000011001000001011000101010111110101111010100...

Second Run Output

001011111001000111001001001100010001100111111110101011000110100111011011100110101011101110011101110101001001011110111101010101110101111000010011011101011101001110100010101111010001101011111100111000101101011100111000001100010101000011010100001000011100110100100001101010011111000111000110110001000100...

Third Run Input

Clara
010100101111101001001101100101010101100011000001111011101010111111101011100010110100111001111100110100101000000010111100100001111100000101000010100100111110001101111110110000111111001100001111011111101010011001010100111011001000001101110110100111100101101010100010010101111010011100100111101010...

Third Run Output

90 49
25 75
3 6
23 80
62 20
86 93
22 41
25 5
40 47
29 73
22 82
66 82
41 98
2 19
76 47
4 85
3 39
46 39
27 65
9 78
22 23
35 86
88 91
18 60
83 19
43 9
95 28
70 23
1 20
67 8
40 70
40 8
97 7
63 93
24 16
32 71
95 8
83 24
22 70
12 44
5 9
80 98
43 97
49 61
45 37
61 22
67 37
76 40
98 45
43 12
45 66
99 2
18 8...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #180:

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

First Run Input

Alice
001110100010110100110111001100110011010001011000001010010011111110101101011010100001001000010100011110110111000110011011011101001110001111001110110111011101101111001000000010110000100010111000001001010000010000100001000000110001101111111111101010100111000010100001101001000000100000000101011000...

First Run Output

001000001011100011010100110101010111100001100101101000000100100011101111011011001001110111001111100001101100011000001000101110011001010100000110011101010010110110110000100010000001001101110110000001011001101010000100100011110101001111100010110000010110011100000001000010110110101101101110001100111001...

Second Run Input

Bob
10000000000101011110010100110000110100100010011111110110010000111010100010101000000001010110010001010111101111110111101010011011101000101110100001011101100100110011000110000010100111100111101100001010001000110101101100011110101101110100101000001101001000011101011100100010010010000001100101011011...

Second Run Output

100010011000001011111110101011100010011010010101000000001010010101000011001011010111000100110101110011101101000011000000111100101111111001010001110010010010100111101001001101011110010100100100000001011111111101001001101010011110010000010110110100101111110010000000110011110010111101100110110111101010...

Third Run Input

Clara
001000001011100011010100110101010111100001100101101000000100100011101111011011001001110111001111100001101100011000001000101110011001010100000110011101010010110110110000100010000001001101110110000001011001101010000100100011110101001111100010110000010110011100000001000010110110101101101110001100...

Third Run Output

67 66
16 25
64 74
38 7
78 75
18 58
59 14
93 86
85 99
68 17
70 69
53 61
12 24
25 32
6 13
72 71
63 86
13 87
62 55
19 92
43 14
64 64
52 5
7 50
20 33
56 71
99 56
3 78
18 73
60 55
44 52
74 77
32 1
73 46
12 56
19 13
73 46
49 21
4 67
58 98
1 17
86 34
93 81
66 90
38 6
64 60
8 72
79 29
3 59
35 3
74 99
43 43
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #181:

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

First Run Input

Alice
010011110010100111111001100010011000000110110000011010101001111001010010000000110101111100111010111011101111000011110001000110000010001010011100100000000001001110000101001010101110110010000101000010101011010000000000001110000000011001001001101111000110010101011111100111111110000010101010101110...

First Run Output

011010010110101000001010001010001001111111000011000110000110110111111011000001000000101100000101011111111110111011010001111010011001000101000010110101111100110000111011011000101100010111110110101101100011001000111001100000011110001001011101000100111010111110110011011111010010010111011101111110010111...

Second Run Input

Bob
01110110100111011001111110000100111011111111000111110100101000010000111100001001001111011001110001110011011011101111101010110010000011010011111010000101000011000111110010011111110001010111011000011111110011000011110100000000010000000010011001011110111010100000000010001111001101100011001000100101...

Second Run Output

010010110000101100110100110100101011010000000101101010000110011011001011110010011001100101001110101000001110101111011101111010000101111000000001100111100011011000000001000110111001111010111011101010001101101101100101101011000100011100101110001100100111001101110001001000010100111011011011111011100011...

Third Run Input

Clara
011010010110101000001010001010001001111111000011000110000110110111111011000001000000101100000101011111111110111011010001111010011001000101000010110101111100110000111011011000101100010111110110101101100011001000111001100000011110001001011101000100111010111110110011011111010010010111011101111110...

Third Run Output

65 93
29 75
89 64
59 60
13 38
30 77
79 8
100 56
6 2
36 37
45 73
92 73
39 1
26 35
28 7
12 92
42 40
55 4
18 82
95 36
50 17
3 54
50 87
3 12
79 100
62 61
96 1
84 2
64 84
23 27
84 7
27 93
6 50
19 46
53 54
86 73
13 12
73 76
80 22
90 15
95 61
91 47
44 82
24 20
81 82
71 64
91 16
68 97
83 69
20 9
34 87
35 69...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #182:

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

First Run Input

Alice
010111100101011010101010001101100110111100101111001111001001110001001110011100000101101010100110101111101100100101011011101111011101011111110011001011001011000111000100011111110111101000110111100101101111000110011000100100010010010100000001011110101001000010010111111000110111010100110000101101...

First Run Output

011110100110010010101000110111011011111110110101010010100010001000011111011101101111100110010010011001000011000000010010101100100011010101001011001100101000001000011110001101101110001100100111100111010101011110001111001100101000101000100101110000001010110000110110111010100001110011101000010100001110...

Second Run Input

Bob
01111101011010011111000010011100111000010001001000010010001000111000111110100010111101010001010110001111111010001100110110101001111100001001110011110101110011100110110100111110100010001000010001110100011011010111000000111111011000000011001011000001001001000111100100111111010010110001001010001101...

Second Run Output

011110001110100100000011101000111010000110110111011000111001010001111111101010010010001011001100010111010111100010101000011010001110010111010010010000100100110101101010101110011111010000011000010000111101011101111001000100100010000001011011111010101101001001111111010010101100111110110010100110001000...

Third Run Input

Clara
011110100110010010101000110111011011111110110101010010100010001000011111011101101111100110010010011001000011000000010010101100100011010101001011001100101000001000011110001101101110001100100111100111010101011110001111001100101000101000100101110000001010110000110110111010100001110011101000010100...

Third Run Output

91 88
89 85
49 8
10 90
90 39
97 3
8 55
31 88
16 74
56 93
69 8
1 18
95 20
37 48
74 2
6 10
25 21
87 18
14 44
69 2
6 90
56 6
88 78
58 84
20 39
73 42
26 60
67 37
50 58
44 93
69 42
65 90
9 69
49 96
21 19
35 24
29 95
73 16
86 99
63 29
72 37
49 98
100 50
23 4
41 53
95 92
93 89
12 64
72 31
93 52
28 7
6 35
3...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #183:

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

First Run Input

Alice
110110011010000000001100101111100000111110000010101100101100111000001011011101111101101000010001000000010000100111100110001111111001111001110011000000001101100011110001111110001101000101000000110111110000101000011111101100111001001000101100111101101110100010010011000101111010011010000111101101...

First Run Output

111000100100011010101001010100010000110011011001100001001010101001000110010110111011111001010001011010010110001010110101001000011010100000011111110010001010111111100000110010110100001110110100011000001100011101101110001000100010010011101011001001100001101011011100011100011001110101011101011010111010...

Second Run Input

Bob
01001110100110111100110101011010000011010000011010000000101000010011001101010110101010110101101000110100101010110110010101011100101101011000101010011110100001010111001100001111110101101010010111011100011101011000000111111101110110010100110001100000011011011100111111011110001000001000100111011100...

Second Run Output

011011100001101111100011101001011101110001111110011010000101110101010101110101100011100111000011110000111000010011010111100101001000110010111001001010011100101011010001000100010001101011101001011001100111010110111001011111110101011010011100100011011110011000111010110111110111001011000010101101101000...

Third Run Input

Clara
111000100100011010101001010100010000110011011001100001001010101001000110010110111011111001010001011010010110001010110101001000011010100000011111110010001010111111100000110010110100001110110100011000001100011101101110001000100010010011101011001001100001101011011100011100011001110101011101011010...

Third Run Output

14 12
66 68
16 68
50 28
9 31
45 96
99 14
97 84
39 89
70 53
78 17
14 19
73 33
52 34
33 10
22 81
96 20
51 96
94 28
84 17
35 86
95 11
57 97
59 67
46 34
78 84
62 16
72 23
38 53
90 90
42 19
87 11
83 51
93 29
43 30
95 20
46 63
61 68
34 7
79 76
33 9
17 60
13 83
49 36
43 33
84 36
44 25
38 4
45 52
87 87
73 6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #184:

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

First Run Input

Alice
001100111001110110101010011001000001100001100111010010000010100100101110001000001100010000000111000101100100110101110100110100111011100101110110001110100001001101110101000001100101011001110111100110100001100111101110110100010111001001001001110110010110100001010001110000000100110011100000000100...

First Run Output

000011110101001100010100010001101100110100000100001000001011101100001111001111010011111110100100110100100101100110010101010010100101100100111111001100001100011111001001001101111010100011110010100000111011011100011110010000000100101011011101011101000001000010101101101100001101001000101010010111010110...

Second Run Input

Bob
01000110110111100010100110000010111111010011011110011111011101001000110000111011110000000010111110111010111110110011011110010011000101101001011010001110111011001010001111001110011111101000001100101010110000101111001001101010100001111100100000011001011111011100000111011001010010011110101111011101...

Second Run Output

010100101110111011101110101111000111000010110101000100110000110111110001000011111110000001111111001010101001101110100000000100011011001100001011010110101000101100000111000010100001101101110000110011100001101000110110111110010111111110111010010100001100011011101101110111011110100001001100101011011000...

Third Run Input

Clara
000011110101001100010100010001101100110100000100001000001011101100001111001111010011111110100100110100100101100110010101010010100101100100111111001100001100011111001001001101111010100011110010100000111011011100011110010000000100101011011101011101000001000010101101101100001101001000101010010111...

Third Run Output

17 15
31 9
76 61
32 48
41 2
22 27
48 7
18 18
25 59
52 52
21 79
97 73
24 83
37 45
30 63
46 63
90 14
39 49
21 54
43 83
6 50
36 67
50 33
96 93
32 48
55 19
95 77
42 20
5 77
13 77
27 82
35 25
28 15
39 32
24 54
42 56
2 42
51 37
70 26
56 81
68 84
62 14
17 83
29 55
3 57
15 100
98 58
74 77
21 100
30 77
22 86...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #185:

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

First Run Input

Alice
110000010100110110100101001110011110010100000101010101010110111000001011110101011101011010000000000111110010001101000000010110000100011100111010000100001001011111111010001000011010000100010101011101011111110111110101110111100100001001110111011101101000011111000101011111101111000000111000000110...

First Run Output

110110010111000110111101111001111111000011111111000010111000001100100011001101110010101100000011110011110000101011001100111111110010010001100000100000001011110100011101010010110100001111000000011000011000000101100111110010000010111001101110000000010010111101100111110000101011000110101000000111111011...

Second Run Input

Bob
10000010111010011110010010110000011000111100011011100110010100011100100001011001011110000011101100011111110001001100011001001100010101111001010011110111111000010111011001011110010111010011100001010010000111001110000001000101100101111001000100001000110111010111000100100001101111000000011001000101...

Second Run Output

100110011111110001111101101100001110000010000011101001101110001100110110111010110010011111111111100110101010001001011110110000010010110011111001001101000001111101101100011011110101001011001011111001100000101100101000110000011000101011011111111000111101101010101111011110101100010101110110011001011110...

Third Run Input

Clara
110110010111000110111101111001111111000011111111000010111000001100100011001101110010101100000011110011110000101011001100111111110010010001100000100000001011110100011101010010110100001111000000011000011000000101100111110010000010111001101110000000010010111101100111110000101011000110101000000111...

Third Run Output

79 71
23 52
3 50
27 80
100 50
45 94
88 7
68 45
62 69
99 67
65 7
94 37
84 56
39 87
36 17
29 83
97 54
59 71
67 92
2 63
27 45
32 81
33 87
100 32
31 78
16 6
37 32
43 98
52 23
19 26
53 5
40 51
37 85
77 44
51 18
18 63
91 45
79 81
88 25
72 26
58 2
65 90
38 87
2 45
45 44
64 95
16 92
86 46
81 64
9 86
48 85
8...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #186:

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

First Run Input

Alice
010000000110101011001010110001011010100010010000010100100010111111010011001010101111000000111100001100100010011011100111010000011100010101110000101101010010110000110010100000111000001110011101100101111111110001110001110110101001101111100001101001110100010000101110111110110010011000110100010101...

First Run Output

010111111101100001101001111111101101010001010000000000011100111001101010010000100011111011110010000000100010000010001001010101001001000111010011101011010111010001011010101001110101100110000100111011000101101000011001100011111001111011011110100011001100011001100111100101101101010100001010100000011010...

Second Run Input

Bob
01000111111100110010100011111101110000001100010111111001001110100011110101111101110101111001000001010110001011011100100011101000101111111111110001100110110011110100101010000110111110110110100111011101111000010110010100110001010110101111000101001000011100100011100100111010011001101010111100110010...

Second Run Output

010101010101001100101000000110001100110101101010000101000000100100000100111100010010010101011011101000001001100001011010111110111111010101100100111101100001001101110011110111101110111100111000101000011011011010111011001111001010000000110100001000000011010000111001011110111001110100010010011010011110...

Third Run Input

Clara
010111111101100001101001111111101101010001010000000000011100111001101010010000100011111011110010000000100010000010001001010101001001000111010011101011010111010001011010101001110101100110000100111011000101101000011001100011111001111011011110100011001100011001100111100101101101010100001010100000...

Third Run Output

43 74
55 74
32 89
99 46
74 11
32 78
10 11
41 9
95 64
69 75
60 87
43 2
1 59
80 46
65 12
54 26
27 1
40 78
88 2
16 50
65 20
53 29
36 85
70 51
6 49
72 28
52 77
94 27
1 34
10 14
21 19
68 4
26 52
50 38
51 43
32 93
65 79
37 17
80 40
62 63
27 34
87 84
25 80
61 27
11 68
85 79
23 45
94 15
36 45
93 56
63 58
21...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #187:

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

First Run Input

Alice
001101100010011001010001101100000111000011000001101101000000001000111111011100001000010011000110000010100000110110001011111110100110001001111110001101000101100001101011000001001100011000010001010011000011000111101011001001000101010000011000101100010010110000001011000110010011010100000101011001...

First Run Output

000000000011001101110111010111110111101100101110010100100011111000110011101010001011100101100111011111010011000011000110101011101100011110001011010010110001001000000100110010101100111111011101010111001100000100101000100111010001001110100100111011100011101011000001010011100110010011110011010010111010...

Second Run Input

Bob
11111000110001110010100010101001111100100100100100110000011010000001011000000000111001010010111010010101110001010011110010100110101100000101000110100010100111001001101100100111101100110111101010100000001001010000001001101000010011110011111010101011101011000001010011110001100100111010100010100100...

Second Run Output

111100000100100100101010000000110110011001001011101110111101010000010011010111100110100010101101111111111011111000111010001101000110001100000001010101000011010010000100101011101111101000011110001000001000110011001000000000000001111110000001101110101001110111100110101011001100110100000001101111011010...

Third Run Input

Clara
000000000011001101110111010111110111101100101110010100100011111000110011101010001011100101100111011111010011000011000110101011101100011110001011010010110001001000000100110010101100111111011101010111001100000100101000100111010001001110100100111011100011101011000001010011100110010011110011010010...

Third Run Output

16 61
18 52
33 72
26 68
34 95
24 54
44 16
34 8
65 14
52 32
30 38
79 72
74 20
98 35
75 12
73 75
68 100
23 57
78 53
65 1
15 16
42 72
4 76
8 45
9 14
37 83
34 24
1 68
86 8
89 48
15 23
22 26
66 79
37 89
73 54
31 11
12 37
28 59
42 63
80 39
68 6
95 36
60 77
72 16
38 35
20 83
60 30
58 47
49 94
67 14
5 90
71...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #188:

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

First Run Input

Alice
111110100011010111100010010001000010101100000001010000110011101001010100100101110001110000111011101010100110011100100101100111000000101011111001101000010011111010010011011110000011010100111111011111010000010000101001110000011101001110011110010110010101011010111010000110111110000100010010110110...

First Run Output

111011110010111111001100011010111101101101010000101000110000101110110011110000101111111001101111110111001101000010001111001101101100111110100111010000001100110010010100010010100001100111001101100000001101101110010010100101101001101111101001100110111101110010100000011101101000100111100000011111111000...

Second Run Input

Bob
11010101010000001001111001001000110101011101010011100011001001111100101101010010110111001010111110011111111110010011111000101000100000110111001100111010011100111100000010110000011011001011000110000111000110100101101001001110000001111010011010001101111011110000000011111000010010000011111001011111...

Second Run Output

110111011110000001101101110010101000100011001110001110110101101100001100000100010101000101111010000011101111110101010101000001001111011110111100011001101011110101101000010111101111010001010010100100010010110000101101001000011001100110010000000000001110111001101010111100011001100110110000111001001100...

Third Run Input

Clara
111011110010111111001100011010111101101101010000101000110000101110110011110000101111111001101111110111001101000010001111001101101100111110100111010000001100110010010100010010100001100111001101100000001101101110010010100101101001101111101001100110111101110010100000011101101000100111100000011111...

Third Run Output

48 100
18 4
77 88
52 13
54 78
90 82
20 80
65 76
86 9
87 20
46 32
76 42
42 63
33 15
93 92
25 60
58 37
25 55
66 72
37 20
53 45
75 34
50 46
97 89
56 46
93 94
12 43
5 46
26 50
1 27
71 53
70 65
27 23
52 57
5 97
67 81
73 43
68 95
6 2
93 77
49 85
46 34
9 81
32 84
72 62
29 29
63 5
16 31
48 83
54 58
3 16
16 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #189:

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

First Run Input

Alice
111101110010110111110010111111110101110011111001100001110001011011100100111110110000011100001001010111111001000110010011011111110100111001011001000001110010001111001100111100001010001001111100101111010001000111011101000010010101110000011101100010110110111010011010101110010000111011101011111100...

First Run Output

110011101011011111100001101111111101001110001000111011101001110101010100100010111101011010101110011011100111010100110001000110101011100111000100100001101001011000011110000011101100010011011000000111001110111000100010100000111101001101000111000101001101100000101100011000100111010000011110001100001101...

Second Run Input

Bob
11010110111000110100010101001001100101000011101110011011111000001001010111000110101111011110100001010011011011010110011111111011010110010111001110010110011000100010010101101101101000100000001001000101101100011000011101011000010111001011100011000010111010001110001100001011001011001000110010001010...

Second Run Output

110101001001110110110010000000110100001001101100000001101101110011110100000110001110001011111101000110111110110110110011111011111101001001110111110101100101111110111011001000100011001010010101001011001001011101001011001100111010011010011000100100111001011110010011010011111000001001101100111101000100...

Third Run Input

Clara
110011101011011111100001101111111101001110001000111011101001110101010100100010111101011010101110011011100111010100110001000110101011100111000100100001101001011000011110000011101100010011011000000111001110111000100010100000111101001101000111000101001101100000101100011000100111010000011110001100...

Third Run Output

12 92
73 9
63 59
5 32
70 29
37 72
87 44
94 78
10 84
79 47
30 82
50 89
84 9
99 33
8 82
57 67
10 17
49 42
97 85
26 2
55 35
18 6
49 85
13 10
13 72
67 39
54 61
9 25
38 98
46 22
97 78
44 78
72 22
19 39
74 58
2 100
74 34
83 94
34 65
19 67
86 56
15 20
81 46
52 81
55 17
58 72
79 31
73 82
87 75
24 100
7 79
3...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #190:

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

First Run Input

Alice
001110010111100100100110100011110010000000110110001011011110010111001111101110010001000110010010110000101111110001010100101000100001000101001010010010000001111100100110001110100001001111010000011010000100101110011100101010101010000100011011111011101001011101100011110000101011111110100110011101...

First Run Output

001100001000001001011100101001100110010011110111010010010101111101010111111000101000010111100110101000111100000111100110011100101101110010100000111100111111001111111000001101111010011110100100000011100010010100111100100110101111010010100101001111011011011011001000011001111100110101010111001001010110...

Second Run Input

Bob
11110000010001001101000110101000001011101111101001100000111001110101111001011110100111001000011111011010101111111100000101000010001110011011110100100101011100111001000101100000000110011110100001011011110101001001000110010000010011110100101101100101110111011111001101101001100010010001100101010010...

Second Run Output

110110110011011111011011010000111111110000100001001100101101110110000110100100001110010111000100110001011001111101000000111101111101110101100001111011100011010101001110110011111001111000001001010100001011010101011111000000101101000111010101000000100001001100110110010010011111001001111010000111011000...

Third Run Input

Clara
001100001000001001011100101001100110010011110111010010010101111101010111111000101000010111100110101000111100000111100110011100101101110010100000111100111111001111111000001101111010011110100100000011100010010100111100100110101111010010100101001111011011011011001000011001111100110101010111001001...

Third Run Output

38 68
14 14
18 93
43 70
49 23
15 45
32 69
31 28
66 70
18 48
83 83
92 56
62 68
97 35
95 93
10 94
43 57
25 23
95 72
70 16
81 22
78 69
66 58
99 59
42 50
31 67
1 7
94 34
74 73
56 33
70 65
86 9
76 75
47 28
58 43
66 67
90 22
37 45
56 77
87 62
19 65
4 83
68 5
99 63
21 19
53 97
8 70
77 87
75 35
47 70
76 80
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #191:

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

First Run Input

Alice
111100011110010010110101010011010001111010001011000011110000010001001000100010001101101011101001110000010110100101101111101011100001010000110111011010010000011100010111110000001001010101010010011100100001110001010000100110001100001100101000101001010010101001110001110101111011000011110011000011...

First Run Output

110111100100010100001100110000111111100110010100001111001100010010000010101110000111010101000111101010001110011010101011101000100100011001101110110000111001111001111000001111110110000100101000011101110011111010010000001101110001110000001100110001110110000110100100001000111000010101111100101110100101...

Second Run Input

Bob
11101010001001010111111111011100100100110001010111111100001001101011010111000000110100001111000001011110110101101011000110000010010100011000000000100001000110111110100110101001110010110100001011101011010011111000110111011111111011101111000000110010011011000101000111110000110010011010111100000111...

Second Run Output

111001011110001100110000100011111010111101111101111110100100110010010011101111000101110010101110000100000100000101000010000011111101110110100110110101001011000011111101001100000010001101001001010000011111011010010001000011001001000110011010101000100001001110001000001000000111111100011010110111010111...

Third Run Input

Clara
110111100100010100001100110000111111100110010100001111001100010010000010101110000111010101000111101010001110011010101011101000100100011001101110110000111001111001111000001111110110000100101000011101110011111010010000001101110001110000001100110001110110000110100100001000111000010101111100101110...

Third Run Output

53 53
26 53
83 49
78 2
72 57
100 39
84 45
53 38
87 41
84 15
83 68
4 53
11 16
9 19
48 73
28 44
76 36
17 64
69 56
41 64
6 24
21 85
54 66
55 53
28 19
5 75
63 98
83 60
83 44
99 81
7 90
90 98
48 51
52 93
92 34
14 32
35 56
6 54
51 95
8 93
3 25
13 16
91 89
17 87
89 17
66 10
10 73
80 90
92 45
97 78
78 2
5 5...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #192:

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

First Run Input

Alice
011010101010000011000101010111100100101011010111111010111011101110110000101011110010100100011110011111110101100001011000011110010011110101011110011101111000011000100011111110110110110010001000111110111111000100010111011100010100010101011100001011100101110000011110001110010101111111101010111000...

First Run Output

011011111011011101101000111000011111000011001000110100000010010011011000111111000111011001010101010110001001001101101100110001100100101111011101000010011111100101111011101010110110110011001011110010100110111101011010101110110101110101110110000000011101110101111110010011101001000001111101010101101110...

Second Run Input

Bob
00011011100001001111100110000001111100000011101101111011000000011010111101101011000100100010000101000101101111101000010101000001010100110001010111001101110010001110110010010011100111010000000111100010011101011010110011110011111101111110001011101010011000110011111101011000011101000110001100011100...

Second Run Output

001010011001100100111111001011011001100001000001101000100001001101011111010010011111110001110100100100110100011101011001011111101001011000100100000100011111111001010100011001011111010011111101001001010111001011111110111010100010011111111010101001001110111000000110010100110110100000100010000111110101...

Third Run Input

Clara
011011111011011101101000111000011111000011001000110100000010010011011000111111000111011001010101010110001001001101101100110001100100101111011101000010011111100101111011101010110110110011001011110010100110111101011010101110110101110101110110000000011101110101111110010011101001000001111101010101...

Third Run Output

93 63
69 78
82 83
61 73
7 7
77 33
1 93
45 72
97 28
77 68
22 33
68 63
34 44
48 83
86 74
58 36
77 68
26 2
26 27
59 82
47 38
91 42
10 45
71 41
8 32
19 26
6 95
54 74
80 76
33 4
61 89
26 2
75 39
27 5
31 1
3 69
70 81
37 30
2 4
67 58
91 13
97 89
26 51
36 51
43 36
78 20
48 15
28 93
63 1
100 94
49 84
35 47
5...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #193:

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

First Run Input

Alice
001110101001100111000011011110100000000010100001101101110000100111010000101010011010110110000001001000000110001001010111001011110000011001111011100001011001100010101011001000111000100111111011100010101101110100011111000001110101100010111000001000000110011100111010101010111001000100111000111011...

First Run Output

001011001000101101100001110000100000101001010100010100001000110100110111000011001001101001001111011011011011001000111011010110110111001001000011100011100111001011010000000110000001001000000110111100111010101011100000111000110001110110000100101110100110001111001011101000011010010001000000100101001100...

Second Run Input

Bob
10111000011101011011100011110000000000000101111111110110000100011000100011011110111000111000010001000001011100111001000001101101010001110100001010100001110110100110101111101010110001110001100010110001011110011000111110110000011101101101110010010011011101101001010000110010111011000010000110001011...

Second Run Output

101111011101110110011011100000110011100000100111110000111110001010101010111001111010001011011100000001110110001001110101111000010011001011011101000110001110011101001111011100111110011010110110100010111010000010110100111110101010011110110000111101001100110110011101100000100010111110011000011010011011...

Third Run Input

Clara
001011001000101101100001110000100000101001010100010100001000110100110111000011001001101001001111011011011011001000111011010110110111001001000011100011100111001011010000000110000001001000000110111100111010101011100000111000110001110110000100101110100110001111001011101000011010010001000000100101...

Third Run Output

51 64
26 64
7 74
77 58
53 52
86 92
60 31
72 18
57 12
1 91
1 40
19 95
95 32
90 55
70 33
23 38
95 37
90 61
73 45
100 41
23 66
87 5
10 9
73 31
13 94
77 8
26 36
28 76
95 17
60 16
25 88
19 23
40 49
2 40
41 21
66 63
15 5
38 4
91 67
75 49
60 19
57 53
44 4
32 72
50 10
36 59
5 48
19 94
30 82
76 58
9 67
35 42...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #194:

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

First Run Input

Alice
001011000011010110000010100111000001111110000010100111001011011000000001011110111101101110001001001011111001111110010110001111010010011110001101111101111010001100110100010011000010100001000000010010111001110001001110010010111100010100110110100000000100001101001010010000101001100011001000010011...

First Run Output

001010100110111101000000110000100011100010010000010110110000001110101000111010111000001101101111111111000101110110111100001101001101101100101010001110111000100011110001000111110000111001100000010011110000000110010100110100111110110110000101001110001001011010011100011110011111101111111100011010010001...

Second Run Input

Bob
10001111011110101000110101100100100011110100000010110001011110010111101000100001011010011111110101101101111011000011000011010011001111110000100010110011011000001101001100111110011000110011100000100000010010100101011001110000111000010011110111101001111010000111110110110111100000011110000010110111...

Second Run Output

101111100111100100101100010010110001001000010001100000100110001111100111100011010000111011010011101010101010011000100100100101011110001101111010100100100100100100001100000101000111101110010111010000110000001111001011010011011100100010010011001111101101001010010011001000101111000110010000000111100100...

Third Run Input

Clara
001010100110111101000000110000100011100010010000010110110000001110101000111010111000001101101111111111000101110110111100001101001101101100101010001110111000100011110001000111110000111001100000010011110000000110010100110100111110110110000101001110001001011010011100011110011111101111111100011010...

Third Run Output

92 32
50 31
58 83
13 43
75 100
65 46
67 43
68 80
71 32
88 55
98 83
31 83
40 88
95 87
87 45
81 37
4 2
46 91
10 72
95 27
76 18
92 2
49 87
21 56
69 2
94 42
50 69
29 63
28 7
32 31
39 60
79 46
34 78
7 24
22 29
24 84
29 27
99 44
71 44
15 9
50 17
98 46
31 30
84 17
39 96
35 42
21 50
78 36
59 19
14 87
4 4
33...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #195:

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

First Run Input

Alice
000011101000011000111100001100011101100101110111110110101000100010111110111001101110010110110011001011100111101010010100001001001001000010101100101011101110011011110110011010100101101010001010001001110110001001110000010110000000110000000101101000110110110110110100100111100101111011000011101010...

First Run Output

001000111110110010011000111001010110001011011010001011010001001111010100110010110101111111101000111001100011010100000000100001011100101101111110000100000101010111110101001011010101010100101000111010111111010000011001101010100100010101011011101110111100011011001000001110101100011000001010011011100000...

Second Run Input

Bob
10101001011010100011101111110000101100011001001101101110011010100001100101000101111010010100010000001100011011101111001010101110110000101011001111011100000111101111011111001011101110110010001001110011101000110010100101001110101000110000100101111000100011101000011011011010011100001111111111011011...

Second Run Output

101101010110110011100101011001011010110000011111100001000111111011111111110001100110010101111110111101101100010100101110000110100000111010101110110000010100110010001000100001111100100001001111000110001111000000100101011101111111100001101111111000010111011010111011111001011011001111110101110111000011...

Third Run Input

Clara
001000111110110010011000111001010110001011011010001011010001001111010100110010110101111111101000111001100011010100000000100001011100101101111110000100000101010111110101001011010101010100101000111010111111010000011001101010100100010101011011101110111100011011001000001110101100011000001010011011...

Third Run Output

37 37
30 99
52 86
70 53
39 18
22 4
93 9
20 19
74 81
58 54
41 52
50 84
22 4
43 69
95 53
92 6
85 65
5 15
91 5
3 60
65 6
75 27
94 71
33 21
50 20
14 61
70 17
2 41
16 83
28 2
56 17
39 15
65 75
96 67
58 66
78 43
2 24
16 82
60 74
8 58
16 35
82 63
67 45
96 87
17 36
6 95
12 26
47 57
59 9
53 87
83 17
34 92
58...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #196:

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

First Run Input

Alice
000111101100011100011101101110010100110111110100011100100101001000011011000011101110101100111101111010101111100010101010001101100111011111000001000011011011101001001000101100111011111001100111010000110110100100011000001000010010101111110001111110011010010110110000110000110000110000110001011011...

First Run Output

001100110110000011011111010100001110101101010111100000110100010010110101111100110010100010101000111001010011011000010001001110010010101010001110111100011101000110001111111101110111100101000110010010101111011111111111000111111111010100111000000001010110111011100011001111010100100111001000011000010010...

Second Run Input

Bob
01001001000101011100001011010101110100110101001001000110011101110101110111010111001100111110010000001101111101000100111000110000100010111111000110010001110111100111110101101100001000111110011000111101111100000111011101000000010010111110001011111011000110001001101101000110101110110001011000001100...

Second Run Output

011011010010111110110010001011011011011111000101111011110000010000000011001111000001011110111001000001000100001000000011000110100010110100111101000101001011110111111111001110110010110001111111111000110011100100111110110010100010111010101000111001011111111100011010101100000110110011010101001110010000...

Third Run Input

Clara
001100110110000011011111010100001110101101010111100000110100010010110101111100110010100010101000111001010011011000010001001110010010101010001110111100011101000110001111111101110111100101000110010010101111011111111111000111111111010100111000000001010110111011100011001111010100100111001000011000...

Third Run Output

95 39
85 48
62 3
81 84
30 18
1 49
77 46
3 10
43 99
57 35
79 15
82 78
80 93
18 73
89 15
55 55
77 40
67 30
3 91
34 29
99 1
4 37
94 24
67 99
11 21
47 41
43 62
3 27
9 1
89 16
5 41
11 90
2 50
87 58
20 96
23 6
99 76
9 42
57 56
32 14
76 57
28 20
30 88
61 70
86 98
56 4
34 68
90 64
39 56
72 71
59 84
77 59
53...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #197:

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

First Run Input

Alice
100110011011011001011111001101011110101110110101100001100011111000101000010011011001111110011000011110110101010010111111101101101100100011011000011110111100000110111000001000010101101011110111111000101101110000001001110001100110101111011101100001110000110110110001110011111010100011001000011111...

First Run Output

101000100010000111101111110000000010001011100101110000010101101010010001101011101111100111011010110001110101111010000010000010010111100011110011011111000010101100100100101111000000010000000100101001111110111011011001111010001101101101110010001000110011010100001110101110100101000100000110010100111011...

Second Run Input

Bob
11010110000010000100000001110010111110001110000000110111101011001101100110110011000000011111011100000110000010011000101101100110011010000111011010011000101111101101100110001010001001011010011111010110101101001111010001010101111111000011100001101001101100001100100010100111010001011110010110110110...

Second Run Output

110001101001100110010000011110100000100011010101011100011100011001001010100110111111110110000001000101100100100010111011101101010111010000101011101010101011110100111110100011101011011000011100100110111100111010001001101100100001001010101010000000111111110000011010100110001011010111101001010010111011...

Third Run Input

Clara
101000100010000111101111110000000010001011100101110000010101101010010001101011101111100111011010110001110101111010000010000010010111100011110011011111000010101100100100101111000000010000000100101001111110111011011001111010001101101101110010001000110011010100001110101110100101000100000110010100...

Third Run Output

60 42
6 60
55 26
64 21
69 94
11 77
57 73
77 67
78 32
44 73
75 16
46 90
32 83
10 3
81 32
76 47
77 12
6 78
52 21
96 78
28 81
73 5
75 49
4 28
48 59
98 56
62 76
88 73
2 48
76 33
64 68
16 37
21 13
89 16
34 78
85 47
75 34
53 84
10 98
65 11
67 2
29 91
53 84
78 76
48 58
62 4
62 74
17 94
60 22
67 25
12 53
30...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #198:

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

First Run Input

Alice
001011000001111011110010110100001110001101101001111100111110110100011001101001101101100010110101101111000111110111101100111011000010001000110101100110100111100111101101111111000000110001011111100100111110001111101001100100101001010110001011011010011111010101100000000111000111001101100100110101...

First Run Output

001011010111110001110001001001010001111111110011111001010111100001110110101011100000000110100000001000010011001010100110101100001101010001111010101101100101011000000011101001111000010110110010010000111111000111010000011001011000111011100110010101100010000101010100010100110011110110100110010110100000...

Second Run Input

Bob
11111011000000100011100011110101011001100001001110000101001110100100011001111100110010010000110000111010010010010001001100010001100101011000010100110110010101111001010100110101010100011011001001000011010000111001011110100110010110011100011101100110111110110101111010100110110000010001110010110101...

Second Run Output

111001000110000100000001101101101100101010110001010001110010101101100000110000010101000001110011100111001111000001111101100101110111000101001110101001100010111010010100110100101010100011110010111011101001001110110011001101010000001000101001111101101110011101101001010010111010010101010011110000101001...

Third Run Input

Clara
001011010111110001110001001001010001111111110011111001010111100001110110101011100000000110100000001000010011001010100110101100001101010001111010101101100101011000000011101001111000010110110010010000111111000111010000011001011000111011100110010101100010000101010100010100110011110110100110010110...

Third Run Output

30 98
2 59
77 49
40 17
12 52
37 38
13 63
53 10
54 38
41 56
98 94
80 59
10 12
63 34
14 14
90 1
88 96
83 86
85 51
38 67
72 93
68 42
59 43
79 53
64 41
23 81
64 16
77 57
26 59
58 9
87 95
42 16
71 52
88 84
40 76
83 34
95 80
16 19
17 30
99 49
49 15
35 22
36 99
21 34
14 59
98 12
11 75
77 60
81 55
88 88
45 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #199:

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

First Run Input

Alice
100111110110010010110001100010101010010111010111111000111011000001111111110100001100111011010000011010010100001011001001000110001001011100111110011101101100111110111111111000101010100011010000011110101001010100001110011111011000111100010110010010001111101001000011010001100110110001100011001010...

First Run Output

101110010110011000011100011101110010011000011101111000101001001000101110100110101111011010011100101000101111010010000101110111100000010001100111010000010010000101101101111000110100000011011101110010100010011111001011110010111100100100001111010001001101110101000110100011110100101100111011000001011101...

Second Run Input

Bob
01001110000000011111001000010110101111111000010011101101010101101001000010111111100001000000000100000100111000001000000100100111000011101100010001111110010010011011010111110000001000101101111000010101011101001000010100100100011001000001001110010011011000010001010111011100010010110110011011111000...

Second Run Output

011010111000010101101111110000100100001110101100001000010010000110000011000001001111010011111011111000111011001011110111001011010010101010111101111001010111011100000001011101010010100000010100000110001000100110101101010000110100101100001111000110101001000001000010110110100110101000000101010011101011...

Third Run Input

Clara
101110010110011000011100011101110010011000011101111000101001001000101110100110101111011010011100101000101111010010000101110111100000010001100111010000010010000101101101111000110100000011011101110010100010011111001011110010111100100100001111010001001101110101000110100011110100101100111011000001...

Third Run Output

80 41
95 58
100 77
19 28
67 8
54 93
83 3
3 32
69 71
92 78
90 39
11 9
31 97
16 55
100 63
95 38
10 69
40 27
68 43
23 25
99 57
87 1
48 59
94 71
62 90
98 26
61 84
35 17
69 87
97 97
81 31
80 3
96 80
91 89
79 71
23 17
62 18
81 77
67 49
12 84
60 7
54 99
50 73
12 99
92 72
54 16
5 32
28 34
15 92
83 12
40 77
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #200:

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

First Run Input

Alice
100000110001101110110001101110000010010100000001000010001010001111101011010111001000100000101011101000010111000010010000010011111100010111110000010100001000000111101001111101100111000001100011101100001001110011010100001001110000111100001010100001110001011110000010010110100110000110100100011010...

First Run Output

100010001001010011101111011111010100010101100101001001010011100000111000111001101001111010110111100110101100001101011001001011101100001000110110111100100000001111000011110011000101111110010101001100100110110011011010010011000000010111001000100011011010110011110111110111010011010001011011111101111010...

Second Run Input

Bob
00000000111010010100000011010110001110001101111101110001011101010100100010000110101101010111100010001010110011011001100101101001010000101000110100010100001010111111000110111011000111110001000000001101000001110110010000001011001011010010011000110000110001000101110110001110101111000101110001011100...

Second Run Output

000101110011001001000101111100010011110001111110011111111100111001000011100100010000101010010100111010001100010010000110100010000110101111100110001110101101001010000110011000001000110000000011101110011111010011100110110111101101000100110001010100110010100101010110110110010010001110101110001011011000...

Third Run Input

Clara
100010001001010011101111011111010100010101100101001001010011100000111000111001101001111010110111100110101100001101011001001011101100001000110110111100100000001111000011110011000101111110010101001100100110110011011010010011000000010111001000100011011010110011110111110111010011010001011011111101...

Third Run Output

91 55
2 19
56 67
72 88
28 74
9 94
36 18
40 82
84 59
24 30
17 71
58 80
82 83
16 44
37 58
27 41
76 57
81 14
9 34
56 20
100 39
99 40
40 83
78 64
66 34
17 26
72 29
58 50
50 42
25 98
78 41
85 19
13 74
56 53
94 83
22 12
51 90
82 30
45 80
32 79
70 39
67 93
40 17
37 73
48 45
79 22
3 36
44 12
15 10
64 18
96 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #201:

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

First Run Input

Alice
000000001101001000010101010011110111100111100000101101011111100001010100110011010010111001011110110111000010011111001110100011111110000111100100111101010111010011111100011100100100010101011111110011000011010011010101011111011100100111100100011010110001011011010101011100111001011001010110110111...

First Run Output

000101100010111111011001011011001110000000111000100101110110011000001100110001011111000011100110000001010101001001111111101000010111100001000010001100011001000100100101000000110111101110101011010001000010101000111000101011011111011111011100001110110011111111001001111111011100101000110010101110111100...

Second Run Input

Bob
11001001101100111010001111000001110011011010100010100110100101101001111010001010100110110110101000101010011101110101101000000110101011000001011001110010000111111101000011110000011001110011001011000110010100010001100010101101001101001000111010010100110101001010111000010111101111110111010101110000...

Second Run Output

111011101010010011000011010100111110110100001111101110100010100110001110000010010100100010000101111001001111001100110110101101000110111110010100100011100111111000000010100011101100110010111101001001000011010100110111110010000010011100111110010110010010110010100010010101000101010011111001011101001000...

Third Run Input

Clara
000101100010111111011001011011001110000000111000100101110110011000001100110001011111000011100110000001010101001001111111101000010111100001000010001100011001000100100101000000110111101110101011010001000010101000111000101011011111011111011100001110110011111111001001111111011100101000110010101110...

Third Run Output

76 14
54 41
8 70
59 22
84 10
14 30
10 16
85 80
10 58
95 54
61 76
25 96
73 32
99 52
56 17
91 19
29 92
73 7
46 49
53 5
18 51
54 4
1 74
24 7
65 48
93 85
94 31
87 35
36 39
29 69
89 90
6 41
62 87
85 48
79 63
13 66
29 88
45 46
19 40
42 32
13 9
30 43
67 69
81 15
37 68
68 27
86 38
88 4
93 46
15 29
66 39
11 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #202:

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

First Run Input

Alice
110101100001011110100000111111011011100101110110100100010011101001011110101000110100101011101111011011101111101010010011000000000100000110011110100111000011001101101000111110010011111101001010111000000011110011110100000100100111011111111110101101000111011001011110111001000010101100001110011001...

First Run Output

110011100110110101000101011000000100111111110010001100110010101010101010011011100101010011101111010111011100011110110110101100110110110111001011011111010100101111010011101000001100010101100110101010101011011001010011111011000100010011000000100110011111101000010111010001001101010110101001000000101001...

Second Run Input

Bob
11111110111101000110011011111001101001101000000100011110011110010000101101111000110100010101000101010010010110001110110010110111011101001110001100011000110011110001110111010110101101000110011101001110111110111000011011001011000111110110101101110100101011011011111100111111101100110100101011011111...

Second Run Output

111101000100011011001101000010011110100101000100101110111111111001101011001011101111111011110111010111001111110011000011001100011010110100001111000001011000101001010111100010000001100001001100000001010100110110101001010110110101110101011001101111010110000011100111110000100111010000100111111001001011...

Third Run Input

Clara
110011100110110101000101011000000100111111110010001100110010101010101010011011100101010011101111010111011100011110110110101100110110110111001011011111010100101111010011101000001100010101100110101010101011011001010011111011000100010011000000100110011111101000010111010001001101010110101001000000...

Third Run Output

15 13
75 69
99 58
4 37
70 39
32 60
88 88
32 50
61 9
53 1
22 84
94 87
90 52
45 42
43 74
35 86
76 40
85 15
36 24
53 26
92 83
42 53
31 14
44 4
57 57
9 50
4 60
52 42
63 20
67 71
81 55
62 92
62 65
25 86
45 66
2 99
99 12
31 85
69 41
18 44
5 17
48 37
1 49
74 96
19 57
35 58
81 73
65 51
29 28
5 89
70 77
79 7...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #203:

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

First Run Input

Alice
111110110111101000011001000111001101111100101001111010110001101000001000101110100101011001001111101101100110001111000101011011010111010000110111000000101100101010010101011011111101101000011100001100000001100111111101011000111101111110010001010011110000110010101101011111010011011100110011101101...

First Run Output

111100110101010110011001001000110111010011010110011001000100001111110010100010110100111101110111010010000001001010101111000101111001010100010100100011011001101101010011010011000110101111110001011001111011100100011100110100011111101000010110000001000001001100101011011101111001111010101001101100001110...

Second Run Input

Bob
00001011000000001111010101101010101111100101111001111001001101010001100110110000001000000001001011001000001100110011011100001101101000000111000110110011011110111101010100011100110100100101001001001000111010111000011010010101110101101001011010001001100000001111111001011011000001010101101111010101...

Second Run Output

001011110010101111111111001110100000100001010010100011101001110101001110001111101010000111110000010010111101111011100000010011010001011001101101101000010010101101000111001001001100110101010100001011000010110101001101000101100111001001111101101001010011100100010001010101111010000011110101001010111010...

Third Run Input

Clara
111100110101010110011001001000110111010011010110011001000100001111110010100010110100111101110111010010000001001010101111000101111001010100010100100011011001101101010011010011000110101111110001011001111011100100011100110100011111101000010110000001000001001100101011011101111001111010101001101100...

Third Run Output

87 14
67 54
75 97
93 92
85 86
43 12
61 19
78 68
17 57
43 89
76 67
15 90
60 27
74 67
91 93
62 36
44 6
20 57
84 67
43 84
44 4
5 40
38 62
58 32
85 77
68 35
58 52
50 94
88 77
4 41
14 71
16 10
55 53
43 20
52 6
56 75
91 4
10 82
43 96
75 46
65 85
73 60
11 17
11 92
19 15
17 32
11 67
83 65
77 46
16 40
81 55
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #204:

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

First Run Input

Alice
001110000001101011000101010010101011000001011001101000010111011011011011010011101000111110101010000010011010000111110011100100111001000010001110111111110001111111000000010100100000101000111101011010111110000011000101010110111010100010101110100000100101101111100100110010011111101110111011001101...

First Run Output

001011001010111010001110001100101010011011001100001011100111001011111000001011111010101000110001010101011011100111011001101001000111001000010011110011101110010010011010110110111010101010111011111001100101101011100101111001011001001001010111101011100010101010101011011010100100001001101010001110100000...

Second Run Input

Bob
00111101111100010101111111001010100001011010010110111011101011000111011100110111010101011000101100111001110001011000001110010111110111111010101100110011000000011101010111100010000010010110111111111011100001101000110100001010011011000101011001111101010111100101110111000011100110001111010011100111...

Second Run Output

001101000110011101001110100100000100000101000001011000100001110110110000111000100111101101101000110110111000111000111100011101111010011100100101011001010011010100001001101110010001011100111100100100101111110000000111001000001000111111010111011011101000110110101011100001111111101110001011101001100000...

Third Run Input

Clara
001011001010111010001110001100101010011011001100001011100111001011111000001011111010101000110001010101011011100111011001101001000111001000010011110011101110010010011010110110111010101010111011111001100101101011100101111001011001001001010111101011100010101010101011011010100100001001101010001110...

Third Run Output

26 75
80 72
85 47
53 10
99 87
98 35
72 33
12 50
80 35
54 81
71 72
53 27
37 90
63 11
56 22
9 60
82 69
87 100
93 75
8 79
9 93
82 76
50 83
45 4
88 43
38 31
16 51
35 4
87 13
62 42
82 38
71 79
79 20
45 31
49 24
15 15
75 69
48 9
49 93
18 3
21 42
87 82
42 25
53 36
22 59
80 37
93 26
45 39
72 55
25 85
72 1
5...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #205:

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

First Run Input

Alice
100011110011111011001110010011101111110001011000111110111010111110011110001100000000011101101001111010101111000110011110010010001011011000010011011100001000100100010100010111001000010011100101100100100111001110101011100111000111100110010000000111100001111000100011001110110101100111110000000101...

First Run Output

101011111011010100011011111100111101000000101010001011000100001111111100101001001101111101011011111101011001100000100111101000010110011101110010100100001110110110010011100010101010101010101010000011111001110011111011100100000101111001110010011011101100000101010100100001010110001010100000111011001101...

Second Run Input

Bob
01111100001010011111000000111111010111011111001010101001111001101101011001000011101001111101100101011101100101100000110000101011101101101001110100100011011100000111001010110110100010100001101110011100011011100001011001111011011101110000010001001110101110010100000010111001000110100110100011000101...

Second Run Output

011010101010001101100100001011101100000010101011100101010111110000001001110001000110011111010110011110001011101001000100101111010110100000000000000101100000110110110001001100111010110100011010001101111100011100001111001111010110010101011000000101010111100011010111110100110010011111011011100110000011...

Third Run Input

Clara
101011111011010100011011111100111101000000101010001011000100001111111100101001001101111101011011111101011001100000100111101000010110011101110010100100001110110110010011100010101010101010101010000011111001110011111011100100000101111001110010011011101100000101010100100001010110001010100000111011...

Third Run Output

11 63
97 43
15 89
49 91
30 100
32 42
8 53
21 70
51 83
73 31
68 85
37 61
87 83
77 17
78 85
74 86
21 48
62 68
28 93
78 74
18 51
95 1
9 39
98 16
6 74
54 44
43 24
61 40
27 43
77 98
17 2
29 40
92 61
85 67
92 31
64 87
18 14
68 7
80 39
44 24
68 74
41 82
97 69
69 100
80 81
91 50
9 98
32 67
78 7
25 94
42 24
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #206:

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

First Run Input

Alice
111011100101111100101011000110011010100101011110110011001000111001011001100111011101110011100110000100000001010111011011000010011100000100000001100001010101000100111000110011001110101010010011010001011111001101011011111011010101111001010110110011000110110100100010010011100110110010011100100101...

First Run Output

111100110100110100100101001011011001100011110010100011011011100001000001001111101010110110101010100101111001110000000001000100010000110011001110101111111001011110001011000111110101101100000101100110011001110111011110100010011110101001100011011100010100100011100000000101000010010110000100101000000110...

Second Run Input

Bob
10010000001110001000000011010110010111001101011100110010010011010001000111110110001001100111100000111001011100010100111010111010111111011011101110001001011001010001011100111110000110010011000010011010111101111011000011100001000001000000100000000110010001010000001110001111101101100010100010011101...

Second Run Output

100011100010101000010000110111011000101101001001010101101000111111101100101111100001100000100001101010011001101011001001111011110010110100111100011100010010000010011011010001100111010111001101000010010011010011101111010111100110101111011101100111010101011110011010101001110100000000010101100011001001...

Third Run Input

Clara
111100110100110100100101001011011001100011110010100011011011100001000001001111101010110110101010100101111001110000000001000100010000110011001110101111111001011110001011000111110101101100000101100110011001110111011110100010011110101001100011011100010100100011100000000101000010010110000100101000...

Third Run Output

5 35
31 68
66 77
62 96
98 14
2 95
19 33
84 72
57 10
1 1
34 6
96 35
4 75
65 80
59 66
93 66
38 23
9 82
92 24
53 99
90 54
96 85
69 84
66 81
28 32
67 26
67 36
49 67
8 37
63 28
41 22
66 70
8 78
13 92
62 50
69 94
88 88
8 20
39 14
32 17
54 73
61 84
13 28
63 80
74 43
53 22
94 43
18 79
95 73
19 49
73 73
53 2...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #207:

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

First Run Input

Alice
100010010110011101000000111001010110011111011000100010001001010001010011100111101010011010011010110000100110100000101101011101110010100000010110011110101010111010001010110010100100000101000010110000100000001101001110001011000111000110010000000111011110110111100111101111001010110001011100001011...

First Run Output

101101000001010110011000100111000010011100010010000110000110000000011110111101001000001000011111110001000110000100001000111001100100011011110000110000011111010011001111011100100011100000011111101001111111000111100101011110000111100100011110001101000101101101100101000100000000110000101010101110010000...

Second Run Input

Bob
11000001001011110110100101010001111001010011001010110011010100111101011000111001110100110010101011101110011010100110111010110000001100101010001111011000011010000110000000100100000000110010101100111011100011110001001011001101101100110011000001011101100011011010101001011101101001001100111111110010...

Second Run Output

110001001110101011100111001110110000111000100110101101011011010101000001110001111110111101011101101001010010100101001110011001000101010000010110010101111100110110011010001010011101010101011100000001010110001000001100000101101010101111001011110001011011001000110110101011111110001111010111101110110000...

Third Run Input

Clara
101101000001010110011000100111000010011100010010000110000110000000011110111101001000001000011111110001000110000100001000111001100100011011110000110000011111010011001111011100100011100000011111101001111111000111100101011110000111100100011110001101000101101101100101000100000000110000101010101110...

Third Run Output

66 8
27 20
99 43
76 9
12 30
42 31
75 32
31 90
25 14
59 36
84 97
85 55
91 52
16 45
72 65
70 61
97 25
71 12
27 74
69 79
11 56
100 53
27 48
90 80
78 50
31 19
97 72
99 64
51 13
57 54
11 77
93 54
50 27
41 67
84 68
60 87
77 96
37 7
17 66
90 82
50 90
41 29
19 27
62 100
85 22
83 41
47 25
88 30
20 19
100 31
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #208:

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

First Run Input

Alice
111100000001011101011111000100011001100011110000000111010101010011001001001000010000010001111000000100010111100010101100001011011100101100000001100010101101010100010000011000000100000000110111110101100010111010001011000000111010010100111000010010001111110010000010100000110110011111001011000010...

First Run Output

110000101000110010000001100011000001100100010110111111010100110101000111001010110011011101100001011001110111001001010101101101010000110111010000110100101000100011011000101011101010000101100110110010010100000110101111001110111011111100100001000001000011110111111111100111010011110010110010000111110011...

Second Run Input

Bob
11100001000000111011001001110101101011010101000000111011111111110100111001000010111001101111010010000101011111010011011101100101101111011000001110000110101100010011111101001101100001010011110111011101100110011110001000000101011101001111100000011111111011010000100101011110000011101101110111100011...

Second Run Output

110011100101111101111000111010100111101110101010011010111110100010101110101111100011001001011110000011000101011001111001110101101110000000011101101010100110001010000111001011011011010110011111000100100010100001001000010011001100101111011001101011100010110001111100101011000110010011111111010101001010...

Third Run Input

Clara
110000101000110010000001100011000001100100010110111111010100110101000111001010110011011101100001011001110111001001010101101101010000110111010000110100101000100011011000101011101010000101100110110010010100000110101111001110111011111100100001000001000011110111111111100111010011110010110010000111...

Third Run Output

33 57
67 74
61 22
40 67
20 66
82 29
32 81
56 63
5 5
66 30
53 32
90 32
73 10
53 99
90 20
99 79
29 49
15 28
52 10
26 17
99 49
81 71
74 84
30 78
49 21
26 73
81 54
23 64
18 90
55 95
44 9
96 24
59 34
32 36
42 23
26 15
70 68
92 79
52 68
14 37
47 24
16 76
89 39
75 54
76 2
76 89
83 44
70 68
37 56
69 51
48 8...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #209:

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

First Run Input

Alice
101001110001110110010000011010110100000111111001011110010000000010100111000101010010010000011110110101001111010101001100001110011001000001110100111101011111000101111101011000001110110110011010000011110000101010011000101010001100010011110101001011111101101001001001111101111010111010111000101011...

First Run Output

100011011000111100101100010111000100010011000001100010101000001000100011101001100001111001110101111100000010001110001010111100000111011001010100111100010000010010011101110111101110101001111101101111111010111000000101100000011000000111101111100110001111011010011010001010000100010001010110101010011000...

Second Run Input

Bob
01100010011111111101111011110100000101010101001100000011111101100111000010100001011101000110010011100100010110001010010101000100010110011110010011001100100000101001100101110000011010001101000101000110111110101001101010000001010000001110001101111100011011011101100101001101001011010111110110000100...

Second Run Output

010111000101110110000010000111101100100001011101111010010010000110100110101010111001100111010011001000010110011101010111011110100111010010100001100000011011100111100110000001101111001000001001100110101101111111101010101100011011101110010011110000101010110011100111100000101100111011110000111001000110...

Third Run Input

Clara
100011011000111100101100010111000100010011000001100010101000001000100011101001100001111001110101111100000010001110001010111100000111011001010100111100010000010010011101110111101110101001111101101111111010111000000101100000011000000111101111100110001111011010011010001010000100010001010110101010...

Third Run Output

73 62
86 68
99 26
91 34
100 32
44 89
53 96
11 52
41 23
3 11
65 44
98 3
30 32
11 41
84 78
47 53
93 30
64 2
11 35
19 54
61 49
49 51
98 78
44 73
99 30
30 35
30 24
26 22
40 43
24 82
11 1
85 26
85 55
14 69
64 91
91 65
30 11
8 78
13 27
49 53
91 3
87 11
13 91
23 54
62 46
43 4
21 54
13 27
16 100
11 55
45 93...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #210:

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

First Run Input

Alice
011010011100001000010111101110010111110001011010101111010101000001011101001011011100010001110111111110000101000000011000110001010011101001010101101011000100001100011101001011101100011100001110111101100010100111000001000100001101011010001001010101011100011111010101011100111001100000110110100010...

First Run Output

011100100111100110011110010111001000101000101100000101101100001011010011000100100011001001011111010000001010100100001110010011011100000100101001100111011110100000110101100110010000011100001101010110100000101101011001101010011101110100000110111101100100010011000111001000110000101111110111000000101001...

Second Run Input

Bob
00100000001011010011011000000110110011011111001101101111111010111010101000001100110010110001001010000001101101110110001110010011110000101000000101011111001110111000011000110101001100110000101110011100011011101010000001010011110110101101101100100000110010110010011011111010000000001001100110000100...

Second Run Output

000000111100001100010110111001001010111110101001111111010001011111111110001100010100111101000111111001101001001100101011011011110010011100110000111010100001101000111100000010110101000101111101001001010000011100111011101100100010000001001010010100011110011000000111110100101000101011000101011010110101...

Third Run Input

Clara
011100100111100110011110010111001000101000101100000101101100001011010011000100100011001001011111010000001010100100001110010011011100000100101001100111011110100000110101100110010000011100001101010110100000101101011001101010011101110100000110111101100100010011000111001000110000101111110111000000...

Third Run Output

51 31
4 63
75 56
42 63
20 96
81 86
36 63
85 56
18 40
61 93
71 5
91 16
3 70
48 62
23 45
20 10
56 80
13 94
56 14
58 14
43 36
31 71
14 52
85 93
61 23
15 11
44 17
18 61
29 93
73 91
22 10
87 88
98 97
30 64
54 35
1 10
8 13
19 6
74 34
11 1
33 63
55 18
12 100
62 5
68 70
52 82
21 76
93 94
24 25
75 46
86 35
3...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #211:

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

First Run Input

Alice
100001011101100100011111001011100000111000100001111100100010000100010100111110111101000000010100001011101101011110111101110001011000000110010100001001011101110101100000000001101101111111110100011110000010001101001110011110001001000110001000110110100000100010101101100011111011011110100001000000...

First Run Output

100100110111001010110101101010100101101000000111111001001101001000000011111001011111100011001011011011001110011000010111111001101011101010000011110100101111001100111011111001011110000000110010010000010111001001000011101110001001111000001100110110111101110001101100101000000110011101110001111111011000...

Second Run Input

Bob
10000001100111110011100100011110110100001001011011001010010100100001011000101100010001110011101000100000011100010111010001010011000100110011011001101100111101100110111101000010011111100111011001011000010110101111000010001110101111101010011100100010110110110001110101010000001011101010111101011001...

Second Run Output

100000010101011001010110011111101100101101001101010111110101110001100100011011010101011111011111001000110001000001000101011111011100100001110000001001101111000110100001011000010011001001100111100011010001101010010010111000010111011001000001010111110110010111110101101100001011111010101110001110000100...

Third Run Input

Clara
100100110111001010110101101010100101101000000111111001001101001000000011111001011111100011001011011011001110011000010111111001101011101010000011110100101111001100111011111001011110000000110010010000010111001001000011101110001001111000001100110110111101110001101100101000000110011101110001111111...

Third Run Output

20 49
84 90
56 10
95 18
93 21
95 92
78 31
50 89
33 91
78 37
34 8
86 78
85 62
91 65
8 95
24 23
52 87
74 36
5 31
32 70
39 10
16 77
13 85
26 33
30 7
33 51
53 34
11 84
63 74
65 19
84 1
54 68
71 26
60 3
60 69
100 68
67 81
22 89
19 69
13 20
7 65
16 84
12 67
35 6
78 52
57 31
16 67
40 48
10 10
99 99
35 68
5...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #212:

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

First Run Input

Alice
111100000111111010101010011001000001011010010101001110101011101001100010110101110001010100000010001000010010001001011100111011010100110100111010101110011101011001111010001110010010011101101011011011010011100000111010111010000101000000011100001010111101111011111010110011110001010011010011101101...

First Run Output

110111000001101110011010101111010101111001100001101111100011100000001001011011001110000110000100001101100101000100011100110101101011111010111010011010110110010110100100110111101011111000010111000000011100110010010111000110010001100100101010100011010001111111100111011110111000011010101000111011000100...

Second Run Input

Bob
01100000000000111110010111101111010110111011001011011101101110011001101011011111101100110111011001000011100001001011011110010100000110100110001101001001100000011100111011110010010101110011100011011010010101001101011011010000101011101010001101010001110101110010100011101111110001001001000100110110...

Second Run Output

010011111000011000001111110011110000101101001001110011001000001001111110101101100100001000010111111111101010110101101011110110000000010100011110101010100001110010000110100110100110000110000101000000011111000000001011010010000110000010100001101001001000100000010010110000000000011011100010110010000101...

Third Run Input

Clara
110111000001101110011010101111010101111001100001101111100011100000001001011011001110000110000100001101100101000100011100110101101011111010111010011010110110010110100100110111101011111000010111000000011100110010010111000110010001100100101010100011010001111111100111011110111000011010101000111011...

Third Run Output

37 38
90 31
86 2
51 61
11 67
71 92
47 97
21 25
28 27
75 99
27 39
10 80
38 37
50 66
67 72
13 98
34 62
43 60
77 93
100 57
96 52
78 26
61 59
83 40
45 12
80 71
3 69
30 87
69 86
19 22
31 13
87 45
50 29
7 41
59 99
71 94
37 24
98 76
41 53
13 41
32 12
18 72
63 85
36 22
85 52
49 45
39 91
9 24
4 47
62 78
63 3...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #213:

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

First Run Input

Alice
100101110000000110111111101000010101001010001000110000000110000110111111011010100010110010111010010111100100100000101000111100001100111100010100010000111010110001111111000001100000001000100101001111000000011000001101011001011000100110001100011101010111001100111010000000111100110100000010011101...

First Run Output

100010011011001001000100011111100011110110100011111001101100110100010010101100111111101000000110011100100011111111110010001111110100000010001111111101110110101000101000101101011011100010011001000000111010011001110001000100010100001111000101101111101110100010110100011010011011010000001111100001010101...

Second Run Input

Bob
10100110010010001001011101111010101000101100111100011010000000100001001010010101001101000101111110111010010010110000011101000010011101100010101011110000000110010101011101110111011010010000011111110010111000101000101010110100001010001001011100111111101010111110011001011010010101110100111101000011...

Second Run Output

100111000011110011010110000010000010000111000111101000110001001000110011000110011010000010010011001000111011111001000100000100110000110101101110001111110111110101000111111101011001100000100010100100000110000110110101101111011001111100100010111001010011111000001011010100000010011101111111011001100101...

Third Run Input

Clara
100010011011001001000100011111100011110110100011111001101100110100010010101100111111101000000110011100100011111111110010001111110100000010001111111101110110101000101000101101011011100010011001000000111010011001110001000100010100001111000101101111101110100010110100011010011011010000001111100001...

Third Run Output

49 96
98 37
70 1
47 48
84 4
29 86
56 24
76 94
7 45
81 33
13 47
82 81
100 73
8 45
47 10
42 59
79 70
59 32
3 64
89 17
63 20
17 72
96 19
64 2
88 73
19 78
26 90
76 59
17 88
26 69
79 18
79 56
49 30
69 42
75 8
37 17
30 11
78 51
29 59
41 40
80 84
85 33
11 28
42 100
81 23
98 5
60 43
37 80
90 47
73 86
76 17
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #214:

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

First Run Input

Alice
110110100110110010101000001111001110000100001111100000101100100101110000110100100010001101100111010100000100000111111110110010010101000101110100101100101010101101001010101101100011001110110101101010111100110000010011001001001010111000111111111011011010111111101110100010010000001100000000111111...

First Run Output

111110000001101011010011011000010010001011000101010010100010101100011000101011100100001110101101001100110000000010101100001110000001000000010110010000101110010010000010001111001110010101100100111101001100001100110011111001101101110110110110111111101101000010000000011110111001101111110010110001111101...

Second Run Input

Bob
10111011101010001010111101011100011011101101010000110001111110010100101001111100100111001111111101001001100111010111110110001100001100110110001011001010100001010000001010101001011000110101100100111100001011111011010001001000001111101110000001101100100101001011110010110100100110000011110111010101...

Second Run Output

101011100010101011111110000011111000000101101001001010110101011011000011111100110110010100001010100100110110101010001111001111001001110100100011101001101111100000110110001110011010100101010110111111110001010000111000011001111101000111001001111110000011010101000010010110110010101011000100110100111111...

Third Run Input

Clara
111110000001101011010011011000010010001011000101010010100010101100011000101011100100001110101101001100110000000010101100001110000001000000010110010000101110010010000010001111001110010101100100111101001100001100110011111001101101110110110110111111101101000010000000011110111001101111110010110001...

Third Run Output

56 85
2 56
57 48
55 62
86 19
100 96
72 21
8 85
60 3
83 37
34 60
31 100
64 23
1 36
83 7
88 34
36 94
71 60
34 11
16 17
1 92
2 25
87 40
96 39
11 32
93 3
51 97
36 8
6 86
50 68
98 48
89 33
6 17
54 85
20 51
33 74
58 70
7 85
42 1
85 9
32 65
64 71
21 48
5 36
89 83
23 33
81 59
41 44
2 68
79 100
34 60
80 70
8...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #215:

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

First Run Input

Alice
110001011111011101110000000101101011111001010001110000001010011101110000010010010000111100101111111110100110000111001001101111011011100101000011011110111000001000100110100010001101000111000000011100111000110001100001101111110000101101001111110000100111011000011001110111101000111011011111001010...

First Run Output

110100110010000000110001010110110100011011010111101001100011110100110001110110011110100001110100110000011101001101010011110100011001011000100111101001110100111000001110010101010110110100111001001001000001111111110100111010110110111101010100110100110000101111001001001011110100010010110010000000010111...

Second Run Input

Bob
00101111110000000000101111110011000101101000110001101001101101111001000011110100010000001110010010001100010101010101011011110011111010011011000001110111011100111111001110011001000110010001001001100000010101001010100111100001000100101111011011101001000010010111111101110101000110100011010011010111...

Second Run Output

001101011111000001110111111111011101011110011001000010010100001111001111000110101111011011001111001111101010101111111111001111011001010100101010100001011101011011011001010011011100001111001101111100001000100101011111001000100010110111111101011111011010010010011111100000001101011001010001101010111111...

Third Run Input

Clara
110100110010000000110001010110110100011011010111101001100011110100110001110110011110100001110100110000011101001101010011110100011001011000100111101001110100111000001110010101010110110100111001001001000001111111110100111010110110111101010100110100110000101111001001001011110100010010110010000000...

Third Run Output

27 12
53 8
62 28
95 31
51 56
32 98
26 13
8 84
88 79
41 69
97 38
43 54
37 44
39 100
49 28
87 9
71 17
52 59
50 24
61 45
25 49
9 74
88 92
33 18
52 10
48 60
26 47
24 22
51 11
53 28
78 66
8 34
100 77
45 55
46 12
100 12
72 19
64 24
100 21
82 75
70 76
98 97
11 83
27 74
61 56
74 75
93 37
34 1
73 62
52 86
28...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #216:

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

First Run Input

Alice
000011101110110110000011100010000111000100100110011110001101000101011110001001100000100000100101011100011100100111111011011000111010111110100100001101011001010000010010000000111001101111100110101100011110010110010001011011101100101110011010011111110000001111101101000001110000110010101110110010...

First Run Output

001110010001000111110011111100001111010010010001001100011101001110010010111000011000010110001111010000111111001010001011001110010000101111011111000111001111010000101110101010000010001110010010110000001100001011001111010011010100101111111000001111010001111110010101011001001110010010101010010001011100...

Second Run Input

Bob
11110000110010000110111111110111000010100101110110100111010111010101010001000010110001111000110010101001100110100000000100110010001100110010000101111111110100011011001100001000101110110000110010110110100001001101100111110011100101011000010001010111100100001011101010111010000001001001100101001001...

Second Run Output

110101100110000011111110100000010001100100110010101101011101010001101110010110011100111010110101101111001101011100001001110101100101011001101000000111110001101111101100000100001011110101101101010011100010011011010001100100111000110001000000110101101111000111001010110111010001100101100100101011111111...

Third Run Input

Clara
001110010001000111110011111100001111010010010001001100011101001110010010111000011000010110001111010000111111001010001011001110010000101111011111000111001111010000101110101010000010001110010010110000001100001011001111010011010100101111111000001111010001111110010101011001001110010010101010010001...

Third Run Output

22 96
36 99
100 22
52 55
62 60
58 56
95 35
68 2
89 76
30 32
11 53
18 17
65 57
39 53
99 59
88 20
63 70
53 75
81 4
53 73
35 85
53 84
4 96
25 79
81 37
39 85
32 72
84 53
31 10
19 89
2 23
78 73
83 50
92 75
60 79
77 57
16 95
68 37
64 48
36 21
60 31
55 66
25 16
4 97
21 4
50 25
87 91
18 67
78 91
71 100
12 3...

Manager to Checker

OK
You answered 99 (out of 100) questions correctly

result:

ok OK

Test #217:

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

First Run Input

Alice
000011110000001100100100000101111000010011000001100100100100010011011000111010111101010001011100101111110110011111110111000100110011110111111110111110001010000001111101101000101010101000100111110100100000101001001101101111011011111110001110100011011100100101000011110001100101011011110000111011...

First Run Output

001000001110100001110001101111001000001110011101101110101111001000001101100110011110011011001000001100101100100000101000001000001100111000110011001101001000001110000101010011010101001000001101001011101000001011001000001101110011001011110010001000001111111010110100100110001000001110010100100001001110...

Second Run Input

Bob
00110100001000111110110000111111011010111101000011000010111100100101101100010001100010101100100111001000110011000010111101100011110101011110000101101001110110100100100010000011011001010110011100011001010010110001101111100101001100000110000001000011010001011110010011000111100111001111101000010111...

Second Run Output

000010110011001010110101111001000110110010001010101100011101000110110001001000111010011111000010110001001010100011100000000010110010110010110000001000000000110011110110000010000010000000110000001001000110000111000000110000110101000110000010000100110001001010010100100010000010110011000010000100000011...

Third Run Input

Clara
001000001110100001110001101111001000001110011101101110101111001000001101100110011110011011001000001100101100100000101000001000001100111000110011001101001000001110000101010011010101001000001101001011101000001011001000001101110011001011110010001000001111111010110100100110001000001110010100100001...

Third Run Output

69 33
86 87
64 48
14 64
19 13
75 59
63 61
80 7
17 39
13 12
72 54
10 30
31 50
72 59
20 3
25 78
85 22
53 38
73 94
14 62
46 24
42 30
67 68
19 56
43 43
19 37
100 83
35 49
47 38
12 22
96 63
72 69
76 47
100 86
75 65
33 94
9 95
96 97
68 36
45 11
45 34
2 74
65 60
39 93
96 99
88 15
54 59
78 8
65 72
73 47
38 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #218:

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

First Run Input

Alice
110111101010000101111100010001000001011111011001101001001001110010000111011010011001100111001110110111100111001011001110100011001101010011101110000010011110010010101101100100010110101010100010100011111111101010010011001110101000010110110101011110011110001100000111100010010110110011011111001001...

First Run Output

111001001010001000010110000011111001001001001001101100011110111001001000101001111100010000111001001011101011001011101111111001001001110010100110011110111001001000010011000010101111111001001010111000000101000010111001001010111011111000000010111001001011101000010011011000111001001000001001010010010100...

Second Run Input

Bob
11100100000010111111010110100001001101010111110010111111101111111100000000110000001000100111010011111001000111000000101001010011001101111100100101101111010100101101110010010101110111101101000001110000010011101001111100000011101000001011100001010100011100010110110010111000101101010010011111000110...

Second Run Output

110010001011000001110000010010100010001000010011100100011111110010001001100100000110100101100010001000010111111101100100110010001000111110000111010100100010001110100010101010011001110010001001100001001100010010100010001011010100101101111110110010001000100101100101110001110010001001011010000010001111...

Third Run Input

Clara
111001001010001000010110000011111001001001001001101100011110111001001000101001111100010000111001001011101011001011101111111001001001110010100110011110111001001000010011000010101111111001001010111000000101000010111001001010111011111000000010111001001011101000010011011000111001001000001001010010...

Third Run Output

1 6
62 88
4 64
95 94
58 83
5 74
67 1
89 42
88 3
31 93
44 4
1 68
91 13
64 69
42 5
93 58
16 14
20 73
30 31
87 42
78 2
73 61
2 95
15 47
47 32
26 15
92 79
6 12
30 81
11 13
57 92
51 49
38 29
8 32
14 86
37 35
6 18
88 85
24 24
27 1
84 9
69 66
56 90
32 33
24 77
18 29
10 34
13 42
68 10
42 18
28 40
33 48
84 4...

Manager to Checker

OK
You answered 99 (out of 100) questions correctly

result:

ok OK

Test #219:

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

First Run Input

Alice
011011101100100011011101000111111001111000010111011111111101010110110000111110011100101101000011000001010110111100100001100010111000101000000110001001000100100111000000010110001010101100101101001001111001111011001001110010111001100000101010010110100101110001001000111110011011100001011111110101...

First Run Output

011110111100010001110000001011011110111101010111000000000010010110110111110010110011011111010110100111011001110111000100010110110110000010011000001100010110111100010010001101111110010110101100010101111001011010011110110101000010100001110101011110111111100010111010000100011110100111100110111011111100...

Second Run Input

Bob
00110010101000001011010011101001001111011011010100011111001100110101010011110100111001000011010000011110100101111100001011010100010001110111101001100110110010010001010000101100101110111110100011110010001011000110011100110011101011101100001011100111010000100101000001100010101111110111011100011101...

Second Run Output

000011100111000000101100111110100011101111101100000000101000000011100110011101001011100001100011100111101001000000111101100011101101001011110110110000100011101111010000010000111010100011101100101000010110111111000011101111100111111111010010000011101111001011000101010110000011100111110000010000010001...

Third Run Input

Clara
011110111100010001110000001011011110111101010111000000000010010110110111110010110011011111010110100111011001110111000100010110110110000010011000001100010110111100010010001101111110010110101100010101111001011010011110110101000010100001110101011110111111100010111010000100011110100111100110111011...

Third Run Output

100 83
73 12
45 57
24 27
50 94
11 65
35 49
71 22
87 3
12 68
83 1
8 97
2 22
35 35
46 70
97 43
55 50
29 15
92 94
27 42
3 56
18 27
30 56
100 33
82 94
97 86
63 83
60 93
17 83
52 36
39 65
45 84
35 73
92 52
5 68
52 95
15 67
5 71
21 58
29 47
2 92
82 57
55 32
82 2
50 24
11 45
59 71
32 24
85 48
97 23
82 99
5...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #220:

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

First Run Input

Alice
100100100101000110000101101011100110011110111100001010111011100000110010110011000010111011100000101111101101011011010010101000111011111011100001011101101011110100110011001110010001100001110100010100010101111010011010011110111111110001011001010000110000101101000000011010001001010010011000000000...

First Run Output

100110000010000100001111010011101111100011110101001111111111101111000010000000000101000100100110000000100000011110001000100111100011100101101100111011100110100010001010010101011010101111100000001100110111000101101111000001100100101011011000100111000001100100011000010011100110000000001000010110100010...

Second Run Input

Bob
10001111010011111110001001110000100001000001111100001011011000000100111000010001111010001011011001110100101101110110101100101001000010001101000101100000000110101100011101000000011010011001101110000101100110100010111000100000101000001010000101001001010001100010010000100011100101000011101100111000...

Second Run Output

101111000100010000110111110000101111000101101111101100011111101111000111101000010010011001101111010100111111001111011011101111010100011101111101011101101111000110010001001111000100101111010110101000001110111011101111010110101101010100111001101111000101101101011011111111101111010101111001011111101001...

Third Run Input

Clara
100110000010000100001111010011101111100011110101001111111111101111000010000000000101000100100110000000100000011110001000100111100011100101101100111011100110100010001010010101011010101111100000001100110111000101101111000001100100101011011000100111000001100100011000010011100110000000001000010110...

Third Run Output

76 61
39 55
14 26
17 55
18 4
76 74
64 17
78 3
48 64
39 83
74 7
58 73
99 92
87 61
42 63
51 35
20 64
92 3
1 61
14 26
82 88
81 99
78 14
29 66
28 39
74 76
69 21
67 75
42 60
33 76
5 42
60 85
97 41
66 50
38 17
49 44
92 81
50 15
54 36
18 44
9 13
35 14
67 4
64 79
87 95
95 43
41 62
44 44
62 87
6 46
3 81
49 6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #221:

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

First Run Input

Alice
110100011101100000010100111111111011100101101111010011100100010100010111100000011011000111111000100001001110111111000001001111110010001100000110010100001001110100110010000111110100111011101000100001100111111100001100001101100101111000111100000010011111001101100000100101101110010101001101101101...

First Run Output

110101110000000100001100101100110101110010100001001111110000110101110011001001011110011000110101010000110011000000010111110101010011100010110001101000110101110000000011001110001101110101010000010010010000101100110101010001001001001001111010110101110001100001111000111001110101010001111011010011000010...

Second Run Input

Bob
10110110011101100101111001001111110101111010111010001000000001011100010111010110010011100110111011101010111001011000111111000110001010010011110100100111001111000100110010010011100001011011000111001000101011111100000100111001000011101100011111101111100011101011001001100111111110001011100000011000...

Second Run Output

100101001111001010110111010001100001000010110010110100100110100001000101011000100011010110100101000001011101010001110100100101000110100101101000011010100101000011000010111011111001100001100000101100110110000011100001100001000011000001001111100101101111100110000001011000100001101100001111011100111110...

Third Run Input

Clara
110101110000000100001100101100110101110010100001001111110000110101110011001001011110011000110101010000110011000000010111110101010011100010110001101000110101110000000011001110001101110101010000010010010000101100110101010001001001001001111010110101110001100001111000111001110101010001111011010011...

Third Run Output

61 64
73 82
84 33
30 47
61 45
81 51
82 52
35 98
63 58
64 45
14 96
42 68
81 27
79 22
97 88
6 56
75 86
20 15
89 87
7 23
41 13
44 55
26 65
88 100
45 56
99 65
73 15
33 43
64 44
52 77
78 10
46 5
78 22
71 16
71 51
91 10
4 51
30 9
26 30
3 92
62 13
39 86
84 91
65 7
91 3
79 7
65 69
10 74
44 94
9 31
35 91
82 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #222:

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

First Run Input

Alice
000100101000000111110101001101110001001111111001001110001110000010100001000010010001111101110011111010010100011100001110100011000110101001101100101101100011100000110001010110110100011100001011000100011011011100111111000100000011011010010011001001111000101110010110110011010010100010000110111000...

First Run Output

000010001010110011111011110110000010001001010100001011001010000010001011001011000010001100000010001001111101001000101011000010001001100011000001110000000010001001101111100001100010000010001001010000110111001010000010001011001011100001010111000010001011010000000101011001000010001011001001010101100000...

Second Run Input

Bob
11001000011101100001001100011000110101011110110111010001101011000010100011001010110011010010111001101010100010111111111110010100011010101110010010101000110011011110001010111110000111001111110111110010010111000100010001110001010000011000111110001000111000011000000111010010101010000111011101100100...

Second Run Output

111100010110100111001000101111110100010100100100110001100111100100010101000011101101101101100100010100100010001010011000111100010100011011011010000100101100010111101110111001100101110100010100110110100101010100110100010100000100001110000000101100010101100011010110011011110100010111010111111111010111...

Third Run Input

Clara
000010001010110011111011110110000010001001010100001011001010000010001011001011000010001100000010001001111101001000101011000010001001100011000001110000000010001001101111100001100010000010001001010000110111001010000010001011001011100001010111000010001011010000000101011001000010001011001001010101...

Third Run Output

28 62
81 54
25 39
1 2
36 12
30 62
25 57
61 78
1 24
20 40
93 26
88 97
1 54
60 32
89 76
14 25
9 61
30 9
82 78
58 22
78 11
68 4
21 87
5 25
88 85
14 32
63 79
17 48
94 4
14 31
60 18
100 53
27 6
29 28
83 25
47 89
77 4
40 12
75 82
26 28
35 75
61 35
32 80
4 19
53 71
23 77
96 78
26 52
4 34
47 80
95 65
99 94
...

Manager to Checker

OK
You answered 99 (out of 100) questions correctly

result:

ok OK

Test #223:

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

First Run Input

Alice
100100100100110001010101100110110100100111101011000100000100101011100000110000111011000100010110100011111011010001011101100110111110011111110000010110011000000001010101101011111010110010010000001100110000000100001011110000111010101001100011010100001100011001101101000001110100101101110011001100...

First Run Output

100100101010000000000001101101100100111011100010001011001100100100101000111100011011101100100100110010100110000010001001100100111000101100000101010011100100100000110111100000011101100100111010000010011101100101100100110000010011000000010000100100111001000011100110011001100100101010001000110110100110...

Second Run Input

Bob
11101000100100011001000001011100010011100000001101101101101110001010011101010101111100011110010110100011101001101110100011010000111010111011011101001101100101010100100001011011011001010011100100010011101110010010001110010011101101100111101110001000111011010111100010100110010100101011111111101001...

Second Run Output

111011111101010001011000001011111111110011111100010011000001111111111100110101111001001100110011111010100100010111111011111011110011100001100000010110110111111110110111010111101000111011111110101101010101100100111111111100100001101000010100110111111101000101111001000110110011110011000101010011011111...

Third Run Input

Clara
100100101010000000000001101101100100111011100010001011001100100100101000111100011011101100100100110010100110000010001001100100111000101100000101010011100100100000110111100000011101100100111010000010011101100101100100110000010011000000010000100100111001000011100110011001100100101010001000110110...

Third Run Output

32 67
84 30
68 62
59 2
28 24
18 48
72 98
91 42
21 14
15 92
71 67
74 20
34 23
14 61
55 56
61 61
6 24
81 59
17 64
65 93
92 53
60 44
78 1
39 73
13 95
36 95
34 37
94 45
42 53
8 81
9 87
86 20
17 44
61 91
84 27
66 6
19 82
70 12
6 29
30 5
30 33
82 9
38 46
57 75
69 2
89 1
40 87
43 54
54 35
95 51
18 4
91 94
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #224:

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

First Run Input

Alice
010011000010000110011111101101111000010101010001111001000011000010000001111100100110011100011100111110101101011110011111100100001011011110011010111100101101100011111011111000010000101000100110110000100010100001100011111011010010101110011001010101010100110110001000100000100000000100010000111010...

First Run Output

011010011110110011100110111100011010010101001100001001111111011010000101111000011111111111011010010101011001001000110111011010010110011100101100110111011010010101100110101100111011011010011111000001001111010101011010010111111001011110011000011010000110100100000011111110011010001100110010000010110010...

Second Run Input

Bob
11110001000101011011100101010110101110010000010011110001010111010100101111111100001101100111011111001001110100100110101111001001101010001111100110101011010010000100110110101011001000000001011001110001110000101010011001111110011110111100101011001010000111010001011101010010111110011111011010101000...

Second Run Output

110011110011100100010011011011110111111010100101111100111000110111101010001010100001011111110111101000110001110011101000110111111000101011101010001010110111101001110000110100010111110111100010001110000000100101110111100010100001110111100111110011111001011111001111011100110011111011100001110111001100...

Third Run Input

Clara
011010011110110011100110111100011010010101001100001001111111011010000101111000011111111111011010010101011001001000110111011010010110011100101100110111011010010101100110101100111011011010011111000001001111010101011010010111111001011110011000011010000110100100000011111110011010001100110010000010...

Third Run Output

42 81
5 47
16 73
80 54
81 89
56 73
9 32
56 92
15 29
95 46
63 64
91 2
95 87
37 63
16 59
84 89
88 86
40 1
4 35
100 88
14 29
25 65
5 54
81 68
53 17
63 65
65 11
22 97
7 24
21 41
10 26
97 69
25 12
79 99
92 18
65 95
61 100
26 1
12 14
32 66
33 84
31 8
67 46
69 11
83 99
28 65
11 46
43 16
34 87
74 69
99 90
4...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #225:

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

First Run Input

Alice
101011000001001100001100110001100101010100111111010000000001011001101101111011110110011101111101100100000010011110110100001111100101001000110000110110110111111100110111101000010010100111101000001111100101001001010011000000010000100011001111001000000101000101110010011111001100001000110010110101...

First Run Output

101001010100101001111000100100101011010100010010101100011001111001010100011110001111010001111001010100110011001100000010111011010101110101011100101000101001010111000001011010011111101001010111101000111101100110111011010110110000100111010101111011010111110011010001011011111011010110000100010010011011...

Second Run Input

Bob
00000010010001101100001111001001101101111100010111100011001001000110001101011011110000010001000001000001010010101110111001111101010111101011001110110010001101010010000101111000010000111010100001110101011101100101010010001101001101000011110001010000000010001001000011000001101100011100011110001010...

Second Run Output

000111010101110010011100001111000110000111000011000110100011000110011111111101000111010001001110001110100111100100010010001111010100010000011000011111000111001101111001100111101011000111010111010110010101001110001111001111101100001010100110000111000101010010110101010111001110010100001001111111110100...

Third Run Input

Clara
101001010100101001111000100100101011010100010010101100011001111001010100011110001111010001111001010100110011001100000010111011010101110101011100101000101001010111000001011010011111101001010111101000111101100110111011010110110000100111010101111011010111110011010001011011111011010110000100010010...

Third Run Output

54 55
33 82
99 15
77 64
82 81
5 14
61 59
36 73
17 83
19 99
35 8
33 6
93 68
20 34
95 6
10 23
30 73
31 69
16 98
53 87
33 47
14 93
97 45
13 49
27 32
70 61
66 98
66 36
6 31
82 37
61 91
80 81
28 72
24 93
99 60
16 72
6 14
97 98
32 49
84 98
30 69
76 65
83 37
8 56
9 31
13 32
43 39
88 43
63 21
93 77
74 82
42...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #226:

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

First Run Input

Alice
000000010101000000101100010011000110000011100110100000001100100101100100111110001011100000010001111010001011011110110010110000111010110011011001011000101011011110010111110011100111011011011100000100011000110011111100110111000011111101100100101100100010010110111011001101001111110000000011101101...

First Run Output

000101000011010010110001111010010101001010111111100011111110100101001000111000001101011111000101001000011111001111010000010101001000101001010111011011110101001011000100101101011100100101000001001000011111000011010101000010010111011001100110000101000010000110110011001011000101001011101000010000100011...

Second Run Input

Bob
11101001101111110101000001111000110111100010011111000011100110111010011000011001010010001101001100011011010111110110111000101100101010101010011100011101000001010101100010100000110001101101100011010001010001110011000111101111101011101001100110000110010110101001010101011011111000010000000011110001...

Second Run Output

111001111110000011010101111100111001111101100010001101110100111001111101100111100000011100111001111101010101101010011110111001111101110111001000001000111001111100010010100010110011111001111111001111110011010101111001111111101110000101000110111001111111100011010100000001111001111110110000000111011111...

Third Run Input

Clara
000101000011010010110001111010010101001010111111100011111110100101001000111000001101011111000101001000011111001111010000010101001000101001010111011011110101001011000100101101011100100101000001001000011111000011010101000010010111011001100110000101000010000110110011001011000101001011101000010000...

Third Run Output

16 59
25 50
83 44
33 65
17 19
42 65
19 10
6 50
43 54
27 42
98 50
7 14
40 32
7 15
45 69
78 49
48 83
73 54
19 97
46 67
84 95
79 39
39 30
40 33
99 96
83 5
84 17
66 90
36 87
35 45
42 72
48 38
45 66
70 6
83 51
50 35
44 20
40 9
15 31
70 77
69 36
1 9
36 93
8 100
97 54
33 7
27 29
83 22
74 39
34 15
1 27
23 2...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #227:

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

First Run Input

Alice
100100110100001000111111101100011010100011001100000110011110101100110101000011011111010010100100110010010010110001000010001100111111110010011110001011100001000001110101100011000111111101001101001111101000110010001111001110100010111110110101011000110000001010000010111000010100101111100010001000...

First Run Output

100100100110001010111001110010100100100111000110100011101101100100100100101110000101111010100100100110110111100000001101100100100100111010001011000101100100100110111011101011111001100100100110010011011010000101100100100100010111101000110000100100100100111100100101011011100100100100001100001101101111...

Second Run Input

Bob
10101010001110111010011001110011111011000111100001010100111100101101001001000001101100001001000010110100101001000110011010011111000010111111101001000011011010010001001000111011010101000000111110011100101111101000010001101110100101110011001001000101000000111001110000111000000010101000010001010010...

Second Run Output

101011111000001011101110011110101011111010100000010111010010101011111010101000100111001101101011111011100011101100101000101011111010001010001101001100101011111011010100000110001101101011111000011111011011100001101011111010001111101111011011101011111010010000011111101100101011111010000110111000101111...

Third Run Input

Clara
100100100110001010111001110010100100100111000110100011101101100100100100101110000101111010100100100110110111100000001101100100100100111010001011000101100100100110111011101011111001100100100110010011011010000101100100100100010111101000110000100100100100111100100101011011100100100100001100001101...

Third Run Output

77 85
57 21
2 47
92 42
72 81
81 14
35 29
41 11
19 9
9 7
1 36
94 95
73 38
92 64
54 49
31 25
81 40
33 5
56 39
12 52
81 75
76 99
12 17
66 15
64 81
25 30
17 57
6 75
25 64
26 37
84 11
68 93
66 26
1 78
28 31
86 26
97 2
55 52
19 85
59 20
91 76
49 20
67 8
17 81
17 55
22 96
51 9
63 87
55 61
81 16
76 69
20 34...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #228:

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

First Run Input

Alice
000101001000001110101000110100011010100010011110011011001000100000101111011111111110011000101110000011100110111000101010000100111110011011110001011101010011110110000010111000011111110100010010111110111101111001110111000000110000100011011101011011001110111011111000010110110101100000100111101010...

First Run Output

000011110110011010110001001100000010110011110000101010001000000010110000011100110111100100000010110000000111000111010101000010110101011110011111010110000011110001000010000111101010000010110011011010110001100101000011110100100001000011111101000010110111010000000011011101000010110110110000101001001011...

Second Run Input

Bob
10101110011000001110110100010110010001101101000110010110011111000110011010001000001101010001101011001011011101000011101001101110101001000100010101100011011111000001110001011001011110100111101110001001010101001010011010100010101010101101001001111000110001110100100110000101000011001011001010011100...

Second Run Output

101110000011011000000010011011101110000010101110011111011110101111000111001110111000010000101111000100111101001010110000101110000010000100110000110100101110000100101010111111111111101111000000000011010110100100101111000011010101011111001101101110000000010111101111010101101111000111001000000100101101...

Third Run Input

Clara
000011110110011010110001001100000010110011110000101010001000000010110000011100110111100100000010110000000111000111010101000010110101011110011111010110000011110001000010000111101010000010110011011010110001100101000011110100100001000011111101000010110111010000000011011101000010110110110000101001...

Third Run Output

30 76
14 88
44 63
50 36
65 37
32 9
51 60
4 59
72 12
75 74
65 99
14 53
60 47
52 95
99 100
51 81
49 95
60 53
33 34
48 72
66 37
96 90
35 71
42 93
92 100
66 25
62 89
71 75
72 17
30 90
23 88
81 30
17 60
67 89
75 29
1 11
95 12
39 91
91 91
53 18
43 19
49 15
58 97
78 63
88 59
15 32
74 12
49 77
25 18
61 74
1...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #229:

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

First Run Input

Alice
001001111010001010111010101010001011001110000100111101000011001000100001100111111010100111000011111100100100010111111111111101011100100110111110001110101010111100101001100000100011100000110011001101111110010010110010011101100111001100000110111010100001111000101000011101010001010010111111101000...

First Run Output

000010010001000100010001011101001010010000100110101111001100001010010001010000110111011100001010000000110000111111001011000010010000001000011010111000001010010010110110111111110011000010010010101111101000001011001010010011101000011000100000000010000010000001101100101011000010000010000000001101101001...

Second Run Input

Bob
00101100100110011110001110000110100101100110010101100010010100111111110000111001000011000110000001000001011100110000001101101100111111101110001110111000000100100011110010110010101000001011111111110000100101011111101100010100010000011000000011001010101110101111110001000010000011011110101101010001...

Second Run Output

001010011001100111110111000101001010011010011010000100100000001010011010110011111111000010001010011010101100011111011000001010011010001111101111110010001010011011011001101101000110001010011000000111100111001000001010011000010101101110000110001010011011011011110111000101001010011011101100111100000011...

Third Run Input

Clara
000010010001000100010001011101001010010000100110101111001100001010010001010000110111011100001010000000110000111111001011000010010000001000011010111000001010010010110110111111110011000010010010101111101000001011001010010011101000011000100000000010000010000001101100101011000010000010000000001101...

Third Run Output

14 23
82 92
96 97
44 63
64 57
34 83
49 45
62 60
81 35
47 75
82 48
70 54
90 28
5 17
59 29
37 13
48 73
37 50
58 29
43 18
58 99
100 27
63 5
1 14
70 79
26 75
89 95
81 84
100 52
47 39
21 13
95 72
27 75
84 23
58 20
76 79
63 57
16 88
94 77
94 4
25 54
39 40
9 5
8 62
32 35
60 60
30 85
65 94
16 86
6 4
19 38
7...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #230:

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

First Run Input

Alice
010110101100001001110000011011010100011100001100100000101101000100011001111010011011111000000100001001000011001110100101110101011110110011100011010101111010111111110000101011011111001010111110101110111010110100011000011100011011111101011100001010001010100011011110001011110100111001011010001111...

First Run Output

011101000001001010111101110111011101000001110001110000110111011101000011101100011010110000011101000000110010010110000000011101000010110101001110000001011101000001111100100100010001011101000000001100100010010001011101000001010111100100001000011101000000110110000110100110011101000010001110110000101110...

Second Run Input

Bob
10001111010001110011110111000100011011000110110010001100000111100011010000000110011010100000001001001101110100001001010011000011001010001000101101000001110011001110010010010100001110000101000110011011111011010101111100011100000000000001100001011111111000101001001001010101001010110001110100011111...

Second Run Output

101101100111001010110010011011101111100010100001011110111001101111100000101111111001011101101101100111011010110001111001101111100110000011111011000110101101100110111001011111110101101111100001011111011110111010101101100010110110000100101011101111100110111001100000011001101101100010110100001011000011...

Third Run Input

Clara
011101000001001010111101110111011101000001110001110000110111011101000011101100011010110000011101000000110010010110000000011101000010110101001110000001011101000001111100100100010001011101000000001100100010010001011101000001010111100100001000011101000000110110000110100110011101000010001110110000...

Third Run Output

37 81
22 83
13 17
30 100
34 8
61 29
63 96
12 77
41 74
2 5
82 43
33 21
96 57
86 64
50 84
19 74
93 93
67 94
18 94
75 9
94 64
100 76
77 85
34 90
53 71
22 96
99 16
96 71
82 41
92 36
94 24
3 29
100 47
65 6
57 42
14 1
68 74
65 28
85 83
30 2
3 20
22 2
13 33
69 43
61 74
39 19
52 96
47 73
52 59
81 87
84 43
4...

Manager to Checker

OK
You answered 99 (out of 100) questions correctly

result:

ok OK

Test #231:

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

First Run Input

Alice
000001101100110111101000010011111000100001111110010110010011101111110100000010000010110111000001010000100000001111111100001101000110110010101000111001011101011000000101110001000000010011001110001001000110001011010000111001000011100001000111011001000000010001000011111100111111111100100101001011...

First Run Output

000111111000110000001001011110000110111011110001110111011110000110111011001001101001010100000111111010110111010110100000000111111011010111101110110110000111111010110110100111100100000111111000111111101100110001000110111001011000101111110000000110111000111001011001001000000111111000100010111001010100...

Second Run Input

Bob
01001110110101100110010101111110101011011001000010110101100110000100100110010110010001000011000101100000001110010000110111111101111001011000111011011100111110111111110001101111111101011110110011111010010110101101010101001000000001101000100011111001011101110111011000000110000110011110111010110000...

Second Run Output

011101100101111000101001100010011101110101000001101010111000011101100110011000010100110100011101110110010001011010011000011101110101111011111010101111011101100100111111101111110100011101110111111011001110111001011101100100011100101111100010011101110101111010001100110100011101110100011111010011000100...

Third Run Input

Clara
000111111000110000001001011110000110111011110001110111011110000110111011001001101001010100000111111010110111010110100000000111111011010111101110110110000111111010110110100111100100000111111000111111101100110001000110111001011000101111110000000110111000111001011001001000000111111000100010111001...

Third Run Output

50 8
34 85
24 51
95 39
99 28
31 9
67 77
94 75
98 76
8 7
15 34
59 88
53 99
50 48
91 69
82 44
68 67
69 42
22 52
96 90
78 80
6 75
66 58
97 49
47 87
89 2
11 64
99 31
31 26
69 72
29 68
19 78
27 78
48 60
95 37
21 20
97 10
52 95
84 77
79 21
19 68
15 61
58 93
18 30
53 33
9 92
36 47
65 73
85 9
45 97
20 78
16...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #232:

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

First Run Input

Alice
111001001011000111010000100001001111000001110101111101101000010100001010010011001010110001010010101100110111001011000011000111100111011000110010110101010000111100100000001011010011010001001111100010110000011100011101110010111100010110111101010101011111111011000001101111111110010010001000101110...

First Run Output

110010010000101110001110111001110010010111110011101001111111110010010111110000100000111010110010010111001110101110110110110010010110111010101111011001110010010100100010100111111011110010010010110101110110000101110010010000100011000111110000110010010100100100001110100001110010010010101011000010101010...

Second Run Input

Bob
10110011001100100100011111111011010110100010100101101001011000010101110000111000001101011001000101110100110110000110111001101101111001101001111000011111111001111010011000011101001010001000100000100010100000000111010001010010100110000100101010010001011110001000001100110111110100110100001010000000...

Second Run Output

100001110001000010111101110010100011110011110010000110100010100001110000000011011011011010100011110011101010001111100101100011110011111010100111011001100010110000101111000111011111100010110011110101001000111001100010110010101100111010100010100001110000011101001000010001100010110000111111111100101111...

Third Run Input

Clara
110010010000101110001110111001110010010111110011101001111111110010010111110000100000111010110010010111001110101110110110110010010110111010101111011001110010010100100010100111111011110010010010110101110110000101110010010000100011000111110000110010010100100100001110100001110010010010101011000010...

Third Run Output

34 4
94 79
75 57
32 84
31 34
34 82
61 43
26 79
94 27
53 86
32 18
8 48
76 3
83 96
42 90
12 63
55 11
73 66
80 11
11 12
23 72
86 14
13 35
100 12
55 24
2 61
35 100
61 36
43 92
64 6
52 45
62 94
11 41
18 50
24 95
27 58
20 95
8 7
69 45
28 63
32 35
96 58
58 74
4 25
9 93
2 96
77 34
16 84
19 67
21 49
66 46
10...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #233:

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

First Run Input

Alice
000110111001110110100010110000101001010000111000101011000101100110001110101001000110010011101001110001001011001111000001100101001011101000010111001010101101011011100111000101100111000001101100101100000001111100010100011101111100010101110111011101010011011011101101011100000110110001110111110001...

First Run Output

001011001100000111101111110001001011001101101011101011011111001001001110001000000101010000001011001100100110000001111010001011001110110100000000111101001011001110010011110101110110001011001101100011100000110111001011001111100000110000101000001011001111010100010011000011001001001111010111111111010100...

Second Run Input

Bob
11110111111011001001101100101101000011010010100100011001110110011101000000000000110111110001101111000010101110001100101100111111001111111001000111011010001111000100011001001010001101100100100011110000111011000010011101111100010010101000001010001101110001010111010010011010010000010010100101011111...

Second Run Output

110110101100110101000110101011110110101100101111111001011000110110101110000011011100110110110110101110001000010001100011110110101111000001011100101010110110101111100001000110100111110110101111000101001000101111110110101110011101010100101010110110101110110110000101101000110110101111001101100010010100...

Third Run Input

Clara
001011001100000111101111110001001011001101101011101011011111001001001110001000000101010000001011001100100110000001111010001011001110110100000000111101001011001110010011110101110110001011001101100011100000110111001011001111100000110000101000001011001111010100010011000011001001001111010111111111...

Third Run Output

45 36
44 99
83 3
89 88
96 8
64 93
22 41
58 75
91 59
69 15
94 63
18 50
14 63
39 91
10 81
66 56
76 31
41 5
88 42
50 16
51 64
72 27
93 74
94 48
59 57
74 11
56 47
3 80
45 10
44 54
22 60
9 73
63 21
58 54
30 64
10 25
72 50
5 41
19 20
39 23
96 33
30 87
48 23
5 49
42 9
27 32
43 28
85 36
64 77
41 59
54 76
74...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #234:

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

First Run Input

Alice
110101111111111110010110110010011011101000011011011011001010010001100101110010011000011110111101111100101010110000010100000000100101010111001011100101100110000000101000001110101100100010000100111100011000101101110110011010100011110110111110101101001111010100100101100111110000010000111001111010...

First Run Output

110111110000100001101001111011110111110010001001001110001110110111110011110011111011101010110101110010010101100000100001110101110000110011000111010000110101110010001011010110011100110101110011110010111001000111110111110010110001110010110101110111110001011101010100101010110111110000010111101110000100...

Second Run Input

Bob
01001110111100110100000010000011111001000111001010010010000110101010010100100011100101110000000011110111001010110011010101100110001001111110000111000110010000101001100010101100010110001000111001111110001101001011111110110101100110101101101101000110001100010011111100011001000011011111011001111111...

Second Run Output

011100001001101001111100001010010110001001110011000110001011011100001001101101011101101011011100001001111000111011001101011100001001101001111100111011010110001001011111100101010010011100001001010000100110011101011110001000101110100110101010010100001010010000001000110101011110001001000001000000111111...

Third Run Input

Clara
110111110000100001101001111011110111110010001001001110001110110111110011110011111011101010110101110010010101100000100001110101110000110011000111010000110101110010001011010110011100110101110011110010111001000111110111110010110001110010110101110111110001011101010100101010110111110000010111101110...

Third Run Output

55 54
36 71
90 38
44 26
34 47
2 49
76 45
22 72
19 22
44 28
70 25
47 23
37 61
11 11
55 6
26 37
14 15
44 44
96 67
51 9
69 34
47 18
29 76
65 42
75 18
58 1
75 36
51 34
26 86
39 69
81 32
26 69
73 27
35 78
70 50
98 98
61 84
75 11
27 95
1 59
64 43
90 7
39 36
97 9
8 69
86 72
32 61
85 7
94 2
100 52
63 50
18 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #235:

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

First Run Input

Alice
100100001011000000100001010000101110011011100101010110011011100110010110100100000010101001111001010001100010111010011010001100101111000110000010001001001100011001010100001110001001001111011001010110011110110000110000010110001000011011111110111011100011001011100000110101100000100011000000110100...

First Run Output

100001011000001011111101111100100001010000100000011100011101000001011000100011000010010101000001010001100010110001011100000001010001101111101011001001100001010010001000000110100100000001010011101100011001111011100001011001101101101001110101100001011000110110000110010101000001011011111101011001111100...

Second Run Input

Bob
00000011001101101011010000111111101101101011111001101101011101001100101111001000010110010011100010110100010100010011000110001110010010010001110000100101001001001000101100000010101001110000011100010111001010000110011100110001110010001010010010000101000010100010001110011011111110001011000110110001...

Second Run Output

000010011100000100011101011110000010011111000111001011101101000010011100010110111000010101000010011111100010110001001101000010011111100001100101011000000010011110001010110110101100000010011100111010001101001000000010011110110100110110010100000010011110110100101000000010000010011110011000001011110111...

Third Run Input

Clara
100001011000001011111101111100100001010000100000011100011101000001011000100011000010010101000001010001100010110001011100000001010001101111101011001001100001010010001000000110100100000001010011101100011001111011100001011001101101101001110101100001011000110110000110010101000001011011111101011001...

Third Run Output

94 58
100 3
47 83
57 77
58 73
92 32
17 65
53 42
25 40
40 17
32 90
50 76
93 53
86 99
46 27
59 78
28 78
24 20
19 64
35 16
13 68
34 44
19 57
90 55
33 8
1 100
25 22
100 53
56 93
76 80
51 3
33 46
89 32
13 85
67 20
30 89
48 37
68 82
65 90
60 54
25 33
27 87
79 63
33 29
57 67
69 85
76 37
53 85
14 94
55 70
5...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #236:

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

First Run Input

Alice
011010000111001000101010111001001011001010010101101110001101100100111110011100010011101100100010000111111101010000011100001111011000000011001100110011100101010111100111001011001101100101111100100010100011100100101010000100010101110011011001111111100010100010100101101010000010101110101011000111...

First Run Output

011101000010101110111110100111011101000001100001111111110010011101000010011000111010100011011101000010110011000111110110011101000000100100000100100000011101000011110110111010000111011101000001101110110111001010011101000010011000010011101100011101000000011010001000001000011101000000011001011011001101...

Second Run Input

Bob
01110010000001101000101001100111011010111010101101000111010010111110110111011110101100001101101101001010100101011110110011011010110100101010011011101100010010111010110101101000101011110110001010101100010110100000011111010000001010100110110110001011101110110101001000101001111101111001000101010111...

Second Run Output

010011111011111001011010101001010011011011111110001101011111010011011010100010111010110110010011011001111101010101001011010011111001011011001000001110010011011010011111010000111101010011111011110101111001110000010011111010010010111010100010010011011010100101101000000001010011111010101111011101010111...

Third Run Input

Clara
011101000010101110111110100111011101000001100001111111110010011101000010011000111010100011011101000010110011000111110110011101000000100100000100100000011101000011110110111010000111011101000001101110110111001010011101000010011000010011101100011101000000011010001000001000011101000000011001011011...

Third Run Output

4 87
80 56
99 33
43 49
38 49
49 40
51 72
16 77
96 60
68 20
54 70
63 21
18 81
74 75
71 93
31 39
14 45
72 42
66 65
58 67
49 49
56 77
1 82
75 90
45 17
38 81
96 17
74 15
56 94
14 7
54 9
5 57
17 22
10 25
9 27
79 67
10 99
74 84
75 56
83 75
14 30
96 58
27 73
76 74
88 31
93 90
28 27
37 33
100 81
96 41
68 63...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #237:

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

First Run Input

Alice
110011000100011010111001000010010011000000110111101111001000110000001110101100101111001010111110100111100011010100110000110001000000111110011001000000001010101111101001100101101010000101011100110110001001000001010111111111010100110011101000100111001110111111110011110100110001111000010001010110...

First Run Output

111110000111001111011011101100111110000101100011101110101000111110000111011111011001110000111110000110010010100111101011111110000110001110101101111110111110000100010001000010100100111110000101001111001010001100111110000101111110000111100110111110000111011101100110001001111110000111001100010001100101...

Second Run Input

Bob
00110100111101001110101011001111110001111110110000111101001010010111010001001010011000111111010100000010100101100111101110010101001010010010000010000100011101011001010111010100010010000011100010111011100011011001101011011011010110100100101011001110010000101110111010011011110101000101000111110100...

Second Run Output

000111000100111111110000010111000111000100001110000110011010000111001100001100111011010100000111011101110111101100001110100111011100001001110010010111000111010110111101001001100011000111001111101011010011001001000111000111011100101011010001000111000100101110001001000111100111011110111101110100111110...

Third Run Input

Clara
111110000111001111011011101100111110000101100011101110101000111110000111011111011001110000111110000110010010100111101011111110000110001110101101111110111110000100010001000010100100111110000101001111001010001100111110000101111110000111100110111110000111011101100110001001111110000111001100010001...

Third Run Output

90 44
21 77
83 77
80 81
41 18
57 41
92 40
45 77
16 51
16 93
100 20
14 71
28 64
85 89
57 84
22 83
82 54
45 6
65 65
99 77
21 53
91 78
93 16
92 31
85 80
23 51
62 14
8 4
66 49
80 47
45 83
26 82
21 10
78 86
32 96
4 100
15 2
47 97
28 42
53 28
66 82
90 68
69 100
54 48
7 81
34 89
47 86
78 24
61 16
44 66
41 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #238:

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

First Run Input

Alice
101101010011111010001011011001001010011011110001111011010011111100000110111001001100101111000110011110001010000001111000011011111011000011111100010001011101000011001111000011000111011001100000001110001011000111000001000110100011010010011001101010011110001011110001101111000011111011010000001111...

First Run Output

100011010111001010100110110011110011011110100001111010100110110011010100011010110100111111100011011111011101000111101101110011011111101101100001100000110011011111110111100000100101110011011111001011001000100111110011010100011001111001101011010011010111110011111000000001100011010100110001111100110000...

Second Run Input

Bob
10100000101010111000011011011111110111010001110101111110101101010000100111110100101001100001110111101101001000111001101110001000000110011001100010001110111001001111000110111000000010011011000110011101100001010100101010010011110110100101000001010000111100011000110110111101000001011000011110000000...

Second Run Output

100011110010101110001001010111100011110011010001010110101110100011110100000110111001111101100011110000110100000001011010100011110111110111010001100111100011110100010100101100011011100011110100101110010101111111100011110000011100101111100000100011110000001100111000010111100011110011110001011111000000...

Third Run Input

Clara
100011010111001010100110110011110011011110100001111010100110110011010100011010110100111111100011011111011101000111101101110011011111101101100001100000110011011111110111100000100101110011011111001011001000100111110011010100011001111001101011010011010111110011111000000001100011010100110001111100...

Third Run Output

54 7
98 38
52 26
17 8
28 62
19 100
84 8
90 96
18 16
77 44
10 51
79 21
80 30
54 70
76 14
50 4
10 41
81 31
70 27
20 71
60 36
96 14
87 83
92 67
94 42
3 53
24 7
40 35
4 62
56 74
77 41
37 16
36 8
1 54
92 64
44 37
31 71
95 74
79 75
6 48
55 91
86 15
96 23
15 11
16 23
34 51
75 49
30 80
76 72
6 71
48 39
99 8...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #239:

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

First Run Input

Alice
001011001111100011000111000100000100100010100110010000101001010111001001011000010100101110011101010000111000101000111111110000100110000010011100010110011100000111100001001010101111101101011101010000110110111100110100100100110001111100111110110001001010110010101110000010011101100111000100011110...

First Run Output

001110111101000011110110000001001100111101001010101110101011001100111111001001010001001100001110111100101011111000011110001110111111110010000111100111001100111110110000100001111001001110111111011001011011010011001110111101110011100011011101001100111100000100001001001110001110111100100010011011010101...

Second Run Input

Bob
11000011101111100000100100001010111101101010101101111000110001111100111100101110100011110010101000101001011000111011011010101010100011110111011111101001011000010100001110101000001100110110000100111101010000010011100011000100000010101000110100001011000110110110111010010010101111011110100100110100...

Second Run Output

110000011010101000100111101110110000011001000010001101000010110000011000110011111011111001110000011010001010101000011000110000011000011100111111100000110000011000110100011101010100110000011011001111111110110110110000011001111011011111011101110000011011111111001001100110110000011011111000001100110101...

Third Run Input

Clara
001110111101000011110110000001001100111101001010101110101011001100111111001001010001001100001110111100101011111000011110001110111111110010000111100111001100111110110000100001111001001110111111011001011011010011001110111101110011100011011101001100111100000100001001001110001110111100100010011011...

Third Run Output

82 70
50 69
77 68
94 59
67 79
42 74
78 16
64 24
32 13
99 95
48 97
3 10
33 31
42 55
54 84
52 8
10 79
87 17
66 31
85 17
63 38
13 94
97 87
95 80
88 96
97 78
48 97
84 22
92 78
3 36
30 34
94 44
73 71
79 82
12 93
29 24
81 80
84 63
7 62
89 5
3 76
15 37
51 33
71 57
25 20
87 89
42 27
34 58
15 47
87 69
14 5
1...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #240:

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

First Run Input

Alice
111011110101010001001100100111000000001101001000100011110010101011101101011110100111001010000111100000100000011011000010011000001101011110111110000001100001011111100110110111001101101000010001011001101101110100100101101000001011010110100101111000111000010011110100010100111101110111111101101000...

First Run Output

111100001101010010010000010100111100101110110001010011101000111100101111110111100111101011111100101100010011111110000000111100101101101001101100111000111100001101011000110010111101111100001111001110101010101101111100001100000011110011010000111100101111111100011011111111111100001111001110111010000110...

Second Run Input

Bob
10000000011111111110101010001010011100001101011011010010111001111100111001011111000010111011011100000001111111101000110000111011000011110011001110111110001110100011000110100110101110011100111010100011010101111110110000111011010010101001101101100010001100011111110011010111010110011111101010100000...

Second Run Output

100110011000100110100010000011100110010011111000100110001011100110011001000110011010111001100110011011110011001010010011100110011000001101000001111011100110010001101010010000000101100110010011101010010011100100100110010011011111110000010110100110011000001111101001001111100110011011000111101111001110...

Third Run Input

Clara
111100001101010010010000010100111100101110110001010011101000111100101111110111100111101011111100101100010011111110000000111100101101101001101100111000111100001101011000110010111101111100001111001110101010101101111100001100000011110011010000111100101111111100011011111111111100001111001110111010...

Third Run Output

39 96
15 43
84 21
53 3
88 39
63 6
45 1
99 34
10 47
23 60
13 81
90 92
51 34
16 76
50 63
38 43
81 83
93 95
75 12
45 54
90 82
61 66
52 81
70 62
96 64
30 99
90 59
34 21
62 36
69 85
65 16
9 46
81 51
94 22
38 50
56 32
86 8
36 64
12 8
89 8
68 78
98 87
23 86
97 68
92 8
92 54
15 77
81 53
47 24
73 1
91 37
89 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #241:

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

First Run Input

Alice
011011001100100000010111001010001011110001100000011000001101110001011100101110000111000100110011100100101111010000011100100011001001001011000000001000111110111100000111010111101101101100011111110101000110001010101100101101001011001010100011001011101111011000001000011011010111011101100001101010...

First Run Output

011100110100010000011100011101011100110100111010000000111010011100110110111001101000101111011100110100101001001101000011101100110101011101100001100111001100110101000011110111001000111100110110100110100100010101001100110100101000010000101001101100110110111110000101111111101100110110011110110001111111...

Second Run Input

Bob
10111010101100111010001100110100011011001011110100000110101011011000101000010110111110010101011011000110000001011010110111111010110101101011000110110011101101000111000100101101110011001011111010110000010111101011011000111000001010110111010101010101111111111011100010101000110000011110101100011101...

Second Run Output

101010101101100010000010010010101011101100101111001100101111101010101101110000011001010110101011111110001011010010000101101011111101000011100010000101101010111100011010110100100011101010111110000010011110110110101011111111000000111111101100101011111110111110110000010011101010101111101111001011011001...

Third Run Input

Clara
011100110100010000011100011101011100110100111010000000111010011100110110111001101000101111011100110100101001001101000011101100110101011101100001100111001100110101000011110111001000111100110110100110100100010101001100110100101000010000101001101100110110111110000101111111101100110110011110110001...

Third Run Output

44 18
32 6
89 49
35 44
86 38
94 79
48 35
77 66
23 17
17 19
47 88
45 29
9 12
97 17
30 90
24 84
91 32
1 40
63 72
4 15
95 4
96 2
64 76
66 94
69 73
94 98
69 38
30 36
76 17
12 26
3 90
80 91
26 63
85 55
47 97
37 4
63 19
44 41
37 87
1 77
28 79
3 81
78 89
98 79
42 38
89 14
21 100
71 89
59 29
53 93
44 99
99 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #242:

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

First Run Input

Alice
110011100000111010011000001110000111111110110010001011001000110100100111110111101001001101001111001111100111101010110101110010010001100101001100010011110101001110100110011100000100110111111010111011111001101110010010110101101000001100011001011110101011110001010111000101010110100110010001111011...

First Run Output

111010100011011001100111001000111010101010000111111000110001111010100010000101101010111001111010100000100001101111101100111010100111101110000000111110111010101101011010101011100110111010100110100010110011110010111010100110010110011110111001111010101010101001101111100000111010101000000000010011011001...

Second Run Input

Bob
00001011110101110000110111001010100101100001100011111101111101010001111111111010110001011110010100001011110000110010000000100100011010101010011001100000010010100000100010001001010101001000001011001111000101101011000010111011100110000000101111010100111010010000100101010001100110001111110100001111...

Second Run Output

001101010110001000010011111110001110010111011100100111001011001110010100000011010100001001001110010101001101000000011010001111010101111000000101000011001101010110101101001010010000001101010110011010111110111111001101010101111100011010101010001110010101000010110101010010001110010111010001101010011100...

Third Run Input

Clara
111010100011011001100111001000111010101010000111111000110001111010100010000101101010111001111010100000100001101111101100111010100111101110000000111110111010101101011010101011100110111010100110100010110011110010111010100110010110011110111001111010101010101001101111100000111010101000000000010011...

Third Run Output

60 18
39 31
86 78
30 95
66 29
98 28
89 93
1 67
40 16
79 84
49 81
52 23
8 36
9 11
29 94
91 41
83 3
8 52
18 1
15 49
18 17
48 56
63 69
56 99
50 29
87 39
20 64
1 93
79 26
29 91
75 45
72 56
46 81
5 12
4 26
1 92
85 81
92 22
14 45
30 56
61 41
41 60
90 52
9 37
42 49
37 89
84 86
27 11
23 44
77 100
45 80
44 6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #243:

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

First Run Input

Alice
011011011010110000100010100101000101111010011010010101011001001010110100011001100100011110010111010000110001010000001001110011111101101100011100110110111100011000111000111011101110110001001110100011000010011000110111111110100111000011000111100011001101001001010100110111110001001111011111111111...

First Run Output

011000111101111101101010011110011000111100001100111111010011011000111101000010000101111011011000111110101100011100111001011000111111011010100111000010011000111111100011110101010111011000111101011111111000110100011000111111110011110110000000011000111111101110111010100110011000111110010010010001000000...

Second Run Input

Bob
11110110111111111101010111010011111100001111010101111010000101111001101111011110011101010000110111011101101101011110001100100001100000111111110100010111011110000000001101101100100101111000100011100011111101011110101111000000100100011111010101110101100000000110101000111001110100110110010001001101...

Second Run Output

110111011110010001000010001100110111011110101110100111100011110111011100100111101100011100110111011111111001111111001110110111011101101011011110000011110111011110111000111010111011110111011101010001001001111000110111011111001111001100010000110111011101000111011110011000110111011111100111000001010101...

Third Run Input

Clara
011000111101111101101010011110011000111100001100111111010011011000111101000010000101111011011000111110101100011100111001011000111111011010100111000010011000111111100011110101010111011000111101011111111000110100011000111111110011110110000000011000111111101110111010100110011000111110010010010001...

Third Run Output

18 44
38 3
24 77
4 23
50 36
33 45
59 61
22 15
61 4
11 46
71 14
42 7
94 36
49 20
34 13
2 45
76 40
97 33
51 86
39 30
75 80
29 27
60 19
17 66
31 44
71 19
50 84
23 10
48 41
82 19
34 5
2 6
21 8
49 87
27 39
95 96
74 28
87 89
12 77
68 53
66 67
4 22
18 64
43 38
52 84
35 96
63 79
11 5
37 63
23 26
82 56
24 97...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #244:

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

First Run Input

Alice
100101111110100111000011100101100110001010001010010110101100111100110100000010001111001101100110010100001101111101101101010101101010111101101110000101110110000110000110101011110110101001111010000100110111001001111110011001101111011001101101000111000110100110010001001100110011101011101110111111...

First Run Output

100110010101000111111110110000100110010111101101011100001001100110010110010100111010111010000110010111101010010111000101000110010111001001111000101111000110010110001111000000110111100110010110101111100111010000100110010100001110101111110100100110010101011011010010101111100110010110010000011001110111...

Second Run Input

Bob
11001111100111010111010001111010001001100101010010111010111100110010100111011100001101010010011001101000010011101101001010011010101000000100011011110001111100001011001010111110011000000110000010000111110111010100111000110001111110011001001000010101010010001011011000001111010001100110001010000011...

Second Run Output

111001000010100110100110101111111000000011001010010101011110111001000011111001000101101101111001000000110100001110111000111000000010000000100111100110111001000011110000110100000000111000000000011011100010011110111000000000110001101100001010111001000001111100111100000111111001000010110010110001011010...

Third Run Input

Clara
100110010101000111111110110000100110010111101101011100001001100110010110010100111010111010000110010111101010010111000101000110010111001001111000101111000110010110001111000000110111100110010110101111100111010000100110010100001110101111110100100110010101011011010010101111100110010110010000011001...

Third Run Output

8 28
73 83
43 73
94 70
66 23
81 92
90 6
87 56
61 56
10 53
41 94
4 22
79 64
15 51
17 92
66 65
55 20
16 98
27 80
54 12
38 56
74 4
43 46
22 52
48 60
92 57
74 93
46 16
90 22
95 1
6 81
67 13
81 47
43 20
16 31
21 69
81 1
36 78
67 85
33 8
14 32
63 82
49 50
65 28
4 12
55 10
71 80
63 69
96 100
63 84
21 50
90...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #245:

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

First Run Input

Alice
001010001110001110011110111111001100101001000111101111000001111010001011000110101101010000000001010011000000001010100010000101111011110001100010001110001100111101100110011100011011001110111111110110101010111001100010010010010000101100010000001010110110001100110011101110101110111010001011100000...

First Run Output

001111101110011000111101000001001111101110100010001101101001001111101101001101011011111000001111101111111000100110101000001111101110101001101100000101001111101101011000010110000010001111101111100111111001111100001111101100101110011111111010001111101100001111001100010110001111101100010101000000011010...

Second Run Input

Bob
11111101000111100101010001111000101011000000110101100111000001011010000000111100110111100001111111000110100111011110110001011000111100111101011001111000110011110101100011000001001101000100001001100100011111010011111011101101110011001111000010110010101001100010110110100000110000001000000111110111...

Second Run Output

111001111101010101001111101011111001111110101110101101101100111001111110000011100101001010111001111110001111111110000100111001110101010010111111010000111001110100000000001010011011111001111110001100011100011110111001111101111111001000110001111001111110001000011110110000111001110101100000100110101110...

Third Run Input

Clara
001111101110011000111101000001001111101110100010001101101001001111101101001101011011111000001111101111111000100110101000001111101110101001101100000101001111101101011000010110000010001111101111100111111001111100001111101100101110011111111010001111101100001111001100010110001111101100010101000000...

Third Run Output

68 25
50 76
34 68
51 57
44 34
100 18
65 46
49 9
94 70
71 83
92 86
47 87
85 27
5 20
38 2
81 98
46 96
62 87
53 86
59 57
69 16
39 49
14 77
56 37
31 53
62 44
31 12
79 79
41 60
44 56
33 25
77 21
21 65
2 66
92 39
19 84
65 22
81 58
24 23
52 92
54 29
78 83
48 16
27 69
56 12
67 70
91 5
75 19
78 69
1 77
69 41...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #246:

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

First Run Input

Alice
101110100011011011001101110011101100011000111010111111001010101001000111010010100100011001110101101101000110000001001000010000001011001010111011110110011000000111011000101011100011111010011110011110001100010000001001111101100101010001100001011111100100111010000100110110011010010110010000100111...

First Run Output

101011010101101110010011011010101111010100010101101010111101101001010100011110111001101011101100010110000101101111101101101100000101100000100100000110101010010111100000001101101100101101010111000011011100111110101001010111101100110000011100101101010101110111010011010001101000000100100110000110001111...

Second Run Input

Bob
01110101011100011011110100100101110100001011111000000010000001100101111111100110100000000100111110110110010010000111001001000110101000001111100110101000100000111111110110001011011011111101010101100011000011111111111101001000001110001101101110101100010000101111101100110111100010110110101100100100...

Second Run Output

010110000001100010000111110000000110010111011111011101101001011110111001011101010010001010111110100010100001100001010011000110000010110101011001011110101110001010000100101010100110010110100110011000100000101100001111110110111110001000110100000111011110100001011010100111011111100010010111110101101000...

Third Run Input

Clara
101011010101101110010011011010101111010100010101101010111101101001010100011110111001101011101100010110000101101111101101101100000101100000100100000110101010010111100000001101101100101101010111000011011100111110101001010111101100110000011100101101010101110111010011010001101000000100100110000110...

Third Run Output

75 76
42 100
62 14
80 62
53 80
57 7
22 45
6 57
14 50
75 28
19 64
46 64
88 4
47 99
84 66
56 16
46 11
72 45
24 6
10 89
87 66
69 89
56 41
82 53
52 87
70 56
81 58
36 93
93 75
32 2
52 39
28 45
33 1
6 68
63 88
20 11
35 74
69 25
93 56
63 28
13 62
53 84
43 22
9 85
30 85
89 64
46 75
2 73
1 18
84 14
34 72
6 6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #247:

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

First Run Input

Alice
001100110101000011011000101111001001001100000100001011000110011000110111001101100011011010101101001111111101110110110100100110101100111111101001010000000000100101010100101100010110010101010011010110110100110111110000011001011110010111111000001110001111001100111011111001100110000010000101111001...

First Run Output

000110000010001101111001010011001100000000110111110101100011001100010001111001011111010001000100010001001110110101011110001100010001010111001111101100000110010011000001010111110010000110010011100111010011010100001100010010110101000011111011001100010010010101101010111001000110000001111011010101101101...

Second Run Input

Bob
11010001000100001010100000100001010101101110000111001000000001100010010011011101001000010011010111000101011000000000001010111011010011010010111111110100110111101101011101001111100110100000100000100110011110010001001010100101101000100001111101001011100001001111001101110001111111100111110100101010...

Second Run Output

110010010000110010100010111101110010011000001101110101010100110010000010000111111101111101110010011000011100010111101000110010000001000100000010110111110010011000101001111100101110110010010001101001000000011110110010001011111110010000111110110010010001100011101101100110110010011000011011000001011010...

Third Run Input

Clara
000110000010001101111001010011001100000000110111110101100011001100010001111001011111010001000100010001001110110101011110001100010001010111001111101100000110010011000001010111110010000110010011100111010011010100001100010010110101000011111011001100010010010101101010111001000110000001111011010101...

Third Run Output

53 62
67 65
11 34
36 17
11 69
8 17
26 21
45 15
24 89
75 55
23 67
10 56
8 75
28 49
32 36
16 84
20 92
36 48
99 78
80 8
62 40
22 62
56 90
26 7
90 53
64 37
9 44
38 61
24 50
53 90
7 42
55 56
24 47
39 7
1 87
19 22
75 57
59 36
64 4
3 23
25 20
45 31
63 22
20 18
91 63
43 62
39 7
40 98
62 95
35 69
61 82
24 6
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #248:

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

First Run Input

Alice
101011110101110010101011110001101000011111000010111111010100010010000100101100011010011010101010010111011010011011000011011001110111010110101100001111111110110001111001110100101001001000001001000100011100111110001110011110010001001110010010100110100101111001110111010100101110100100100010110101...

First Run Output

101111011011010001110111100100101111011000111101110111100100101110011000100100010010100110111111011000101111001000011011111110011001111001010100110100011110011000100000101111000110111111011010110001011000100111111110011010100111010111111010101111011001100000011110001010001110011011001111111010111010...

Second Run Input

Bob
00010000010000010111001010111011111001000101101110100001111100000000101111111111100110101010111000100111010010001000100110111011110010001110100101010110000011001000000101011111100001111110010100001111100011111100111011100011010010000010101110100101011011101000000101100101010110101001111110001011...

Second Run Output

000100000000011110010000111100000100000111101110000111001000000100000111111111101111010001000110000100000110110001111100001100000100010001001110011010000101000011101010100100100001001111001110011110110110101000001111001111100010011100010110001111000010100110011010111111000101000001110010111110111110...

Third Run Input

Clara
101111011011010001110111100100101111011000111101110111100100101110011000100100010010100110111111011000101111001000011011111110011001111001010100110100011110011000100000101111000110111111011010110001011000100111111110011010100111010111111010101111011001100000011110001010001110011011001111111010...

Third Run Output

62 63
86 67
33 99
46 69
47 52
17 52
24 84
28 11
100 33
38 29
5 44
2 11
3 84
71 31
6 71
19 61
30 62
95 16
70 69
29 46
74 30
39 99
79 1
31 54
33 45
39 50
26 87
97 20
55 42
25 81
29 15
28 86
8 68
91 69
39 67
99 89
19 59
70 32
35 3
64 43
63 13
37 64
15 40
37 76
34 8
80 36
9 36
18 45
97 20
40 8
70 5
41 9...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #249:

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

First Run Input

Alice
101111100010001100100000001111010110101101111010110010001110101011110100011010010001001001101100110001100100110001011101010001010001010011101000010010101111001110110001100001000111000100111010000111011010110100010101011101111010111011100110110001111110010110110100010011100100100110010100000001...

First Run Output

101000111001001010011100101011111111001010101111100001110001101011111001101000001111001011111001110000100101010001010101101000110011100110111110000110111011101000110111111011000011111010110000101101001111110010101011111011110110100100000011111100101011110001011010001100101111001000001010100100110110...

Second Run Input

Bob
11010101001100111101111011011101100110101011000101011111010011100111101101100011101101001010100110010101100101000010110101000101010101001001111111110110101110100101001011000000100111110110101100001011010001011110000111000001100000111001000001111000100000001110000011101000001011010011001000010110...

Second Run Output

110011110001111010000001111010110011010111001101010101000001110011010001011010011110100100110011010110001010111001100001110011010100010110001011001101110011010110101101100000111100110011110101000010110010110110110011010110001011000100101011111011010000011111111000101100110011110010110001011111010001...

Third Run Input

Clara
101000111001001010011100101011111111001010101111100001110001101011111001101000001111001011111001110000100101010001010101101000110011100110111110000110111011101000110111111011000011111010110000101101001111110010101011111011110110100100000011111100101011110001011010001100101111001000001010100100...

Third Run Output

87 71
11 44
17 4
40 27
77 68
36 31
89 73
73 28
86 72
33 44
32 62
94 7
84 66
86 85
72 57
75 54
2 28
75 51
85 30
31 14
29 35
57 30
99 52
14 89
36 96
12 66
69 24
62 83
56 90
99 66
65 39
98 47
2 99
34 68
39 39
86 85
58 38
23 93
98 99
50 15
2 37
41 34
17 91
55 49
18 31
57 27
63 66
47 50
39 33
47 23
25 41...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #250:

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

First Run Input

Alice
101001110101111000011101111100010000110000010110100001011011000101101010101110001001011110100010010111001011010000110110101110001110101010100111111011011010111010011000000001101110011101001110010011000101001101010011110111001011101110010000010010010100011111100110110100111001110101011001111010...

First Run Output

100101100010101011111000101101100110100001011110111001101101110010000000000000001111000110110111000001000111100101111101110100100010000010110101011000110001100010111101010110111011110010000011111011000001001010110000100010001111100000001111110001000001011111110111010111100101100011010011010100000110...

Second Run Input

Bob
00110001001011101010101000001010101010010101111000111000110101001110011000000011011011000100111001100111000001011001010010000001010011011010101010101001010100010100011001001111011110011100001000010000011010000100000110011110111101100101101010000111001000011101101111100100101010001011100111110010...

Second Run Output

000010101100110111100110000001001001011011111100110101000111001011001101100100010001001101001001111111001011101101111011000010101000010010001101011110001001101110001110000100000111001001011110110010100000101001001001111101111011001011000101000011011010000001010111100111001010011100100100001000010100...

Third Run Input

Clara
100101100010101011111000101101100110100001011110111001101101110010000000000000001111000110110111000001000111100101111101110100100010000010110101011000110001100010111101010110111011110010000011111011000001001010110000100010001111100000001111110001000001011111110111010111100101100011010011010100...

Third Run Output

2 38
26 66
88 47
44 83
99 80
51 37
93 40
92 95
83 64
74 67
4 57
60 12
77 22
34 48
63 76
36 24
72 76
14 94
57 27
19 84
77 33
8 18
51 36
89 96
90 64
47 100
97 65
3 27
22 62
16 65
90 8
75 49
31 10
16 90
79 19
1 49
57 39
56 15
63 95
74 44
99 24
38 44
53 77
46 78
53 7
84 57
45 78
45 86
22 70
98 26
21 69
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #251:

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

First Run Input

Alice
010111110111011111100101001000110111000000110001110111100101110000110000011110011000100111010001001010101100000000101001001100101101010000110100000011010011010000110110010011111111010100010111000111001101000000011110110011100101001110001101111110001111000100010001110011000100010011111111010111...

First Run Output

011110010010011101011001111010011110010100001101011100110101110110010101000111111001001010010110110011011010010010010110111110010011100111001100000111010111110110111111000110110100111111110101011010001100010010010111010001100101101100010110111110010111010011110111000001011110110001010000011111000100...

Second Run Input

Bob
11111010010100100000100100000010111001110011110111010001001010010101101010000011011001000001101000010010111000101110000101100101001001110001101001000010101100000100111000010010100100101010000001011111001010010000001101100011111110100000110011110000011000110100001010000111100011011010011111100111...

Second Run Output

111100010101001101110010110110010101010100111110110011110011011100011110101100101111001001111101000101010100001010011101010101010110111101001010000110010100001110010110010000010011010100000110001001010001001110110100001111001110000111101000011100000111000111110101110111111101011111101111000001100111...

Third Run Input

Clara
011110010010011101011001111010011110010100001101011100110101110110010101000111111001001010010110110011011010010010010110111110010011100111001100000111010111110110111111000110110100111111110101011010001100010010010111010001100101101100010110111110010111010011110111000001011110110001010000011111...

Third Run Output

43 70
77 70
77 5
17 49
61 70
59 61
76 9
2 60
32 68
85 11
86 2
40 97
9 61
48 66
53 73
94 75
68 93
75 8
24 26
43 40
27 74
41 49
23 99
10 32
97 50
61 53
78 37
72 83
31 44
61 65
31 72
51 17
61 89
68 10
37 48
36 32
66 60
93 59
99 7
81 72
68 29
69 29
61 78
56 44
64 49
15 21
1 44
7 53
7 84
14 5
35 9
37 9
7...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #252:

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

First Run Input

Alice
001001111100100100101110111111000001111101001111101011011001011001000000010111001100110010110000010011011100010000110111101001011001001111011101100000110100011100011111101110011000001101101010011100101101100010110110001010010111100000010000011110001000011000101111111111111000111011111001111001...

First Run Output

000101100110100101000110000001000101101111010111101011100000000011001010011111011100001010000110001110100000010101101011000001000011010101011101110101000000001101000101100110001100000111100011010000001101010100000100100101111101011101001010000100100111101110110110111110000011000011100101111011011100...

Second Run Input

Bob
01101101010111001000101001011001100111011000110011001010100000000111011110110011110111001110101001010111100000001100011010100101011010100010101010100111110101001011010001010111100010111011000011010101110100000000100111001011110110011100110110001001101010010011000011110000111110101000110111111001...

Second Run Output

011111110100110101111101111001101111000010001110010111111011011111011100011001010111001100111111000010000001111011010100100111010010000100010100010111010111110000001010110101101101001111100001010010101111110010101111101000011110010000110000111111010110110001110011000010001111011101110011011101001100...

Third Run Input

Clara
000101100110100101000110000001000101101111010111101011100000000011001010011111011100001010000110001110100000010101101011000001000011010101011101110101000000001101000101100110001100000111100011010000001101010100000100100101111101011101001010000100100111101110110110111110000011000011100101111011...

Third Run Output

68 72
65 58
6 96
79 23
26 55
56 45
3 10
15 44
62 91
44 58
25 17
97 36
56 10
88 81
36 28
76 82
54 50
88 85
62 47
71 49
92 67
42 84
46 99
94 18
6 5
47 96
14 32
30 81
32 95
78 70
29 45
77 58
30 85
18 77
51 5
5 94
79 16
5 62
98 35
65 54
82 75
51 12
91 64
50 49
27 5
68 35
83 54
26 95
82 46
75 71
63 85
68...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #253:

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

First Run Input

Alice
011011001110101000011010001110001100111100001110110011100100010110100111011101110010110100110000000010111001100010100011010011011100110111100000011101111001000110010001001100101110100010011100011101011100001001100011000001010101110010001101110101111111100001010010110110101001000001110110110010...

First Run Output

011100111011000101100001011100111100010010001101011101111101111100000001100000000000000001011100001001010010100011110111111100111000100011001101100011011100110001111110011100010101111100101011110101001010010010111100100001110000111010001100111100100001100011110011001111011100001000000100100110110101...

Second Run Input

Bob
10110101010101111000111111110000101110100110000011011000011110001001100011011111111001011101011011010001110001111101101100000110100000100010000101001100000001111110111111001100000001011101000101110110110001010001100100110011010110011110101001000000011110110001000001100110111011010101010111110110...

Second Run Output

100111111100010101000101000011110111111011110010111111111110100011101100100010100111000000110001001111111101011110001001110101101101101101111101101110110011101000110100111110110111100011101000010000101001001000100111001001001010010110110011110011111000101000011011011101110111111111000011010000101001...

Third Run Input

Clara
011100111011000101100001011100111100010010001101011101111101111100000001100000000000000001011100001001010010100011110111111100111000100011001101100011011100110001111110011100010101111100101011110101001010010010111100100001110000111010001100111100100001100011110011001111011100001000000100100110...

Third Run Output

36 33
64 92
92 50
53 32
33 5
25 94
48 89
22 35
95 55
19 21
84 82
89 90
98 46
95 95
12 60
79 84
90 88
29 31
85 25
4 92
6 46
5 70
40 83
62 8
29 27
83 69
30 73
91 73
86 44
66 8
53 20
9 84
57 62
60 39
99 56
70 22
33 34
53 29
72 36
48 12
38 2
74 42
38 92
77 84
51 77
87 9
64 63
80 19
92 34
30 50
24 34
65 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #254:

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

First Run Input

Alice
110101011111100110110011001101001001101001010011011111100001001010100011100011111110010110001011000111000011011000000111111100001011111110001000101101100110010001111101100000101100110110000111110010010001011100110101101100010001101001101111010100101101111111111001111000100110110110000001001111...

First Run Output

110110111111101010101011100000110101111100001100110100101010110010111100101011100100011110110011111110111111000111001011110111111100110101011111000101111110111101010010001100001010110100111101011111110110111011111100111101101001111001011000110110111110011001000001110111110101111110101011101011010001...

Second Run Input

Bob
11111101101111010110111100101101001100110111101000011101000101110010110011011001000111010010010111110110011000011010001010111000010111101000111110101000001100011011011100111111101111110001111111000011100010101100010001000001110110111010100010001001100001101101100011000011011101101100011001010101...

Second Run Output

111000000000100111100111001110011000000010011111000100110010110000000011110001111110000000010000011010010011010011100100111000011000111001110110111000111000011001001101100001111001110000000011111111100001000011010000011000001010000101110001110000000011110110100100110100011000000000001011111111101010...

Third Run Input

Clara
110110111111101010101011100000110101111100001100110100101010110010111100101011100100011110110011111110111111000111001011110111111100110101011111000101111110111101010010001100001010110100111101011111110110111011111100111101101001111001011000110110111110011001000001110111110101111110101011101011...

Third Run Output

6 69
86 85
83 50
89 72
15 47
13 7
2 57
30 25
98 4
52 75
46 47
98 55
55 94
74 59
25 2
29 13
48 54
69 38
74 4
70 62
97 59
36 34
23 53
99 1
19 25
65 4
48 76
18 56
94 13
74 82
42 49
90 66
5 99
89 90
94 29
11 51
50 48
6 51
93 76
50 71
28 3
22 30
26 45
19 11
95 2
65 83
59 9
6 19
52 39
62 67
18 42
12 73
9 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #255:

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

First Run Input

Alice
001000000100000011101000000111011010111000101101010100101001111001001111111110111001101001110000100001011100001101100101011101010001000111000000101011111110101000110010001100010111010100100101110110100110101011100101001100110011111010110011111010111101110010110101101110111010010000000010100010...

First Run Output

000110110001101010010100100011001010010110001000111000001010000110110100101100011000101101101110110100100100011010010000101010010111000001110101011110001110010111011011101001111010101110010000101100111110100101001010010011000111000001111101000110110111111010001001010110100010010101010101010001111100...

Second Run Input

Bob
10100100111001110101111011000011110011010110110001111010111011111100010011110011000110001111001100100000111011011101010111101000011001111011010100011110101101100001110111010111100100100110101111010001010000111101100101010010100101101100101110010001111000001010010001011110110011110111100011010110...

Second Run Output

100101111001010011001111000101110101101000101110011111110001100101111000001111100010111110110101101010110101100011111110100100111011101101101001000011110101101000010000010101000101100100101001001001100110001110100101111001110101101011000101100101111101100101001000001101110100101100000100011100001011...

Third Run Input

Clara
000110110001101010010100100011001010010110001000111000001010000110110100101100011000101101101110110100100100011010010000101010010111000001110101011110001110010111011011101001111010101110010000101100111110100101001010010011000111000001111101000110110111111010001001010110100010010101010101010001...

Third Run Output

28 99
7 22
63 53
77 99
99 88
46 85
79 77
35 19
7 28
62 68
81 87
99 53
93 26
66 38
74 93
68 45
67 96
31 74
95 54
19 56
44 75
75 82
25 1
71 7
43 33
67 87
95 5
18 29
98 96
79 80
5 21
33 68
68 64
85 45
69 96
62 47
30 14
57 46
57 79
82 86
43 69
35 10
73 79
75 53
84 32
19 22
46 40
17 88
72 60
60 29
75 96
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #256:

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

First Run Input

Alice
011111010100100010000100111100011101000100000000010010101101010110010110001100010101100110011011000001100011101111010001001011110010001111011000110010100010110100011000101100101010111100101010110110011110100011001010000100001110001001001000010000001001100001111010000011001010110001110101100101...

First Run Output

011111011100101100000100111010011101011111011100000111011001111001111101000100111011001010111111011101111011011011010011011001011100001001101001101001111101011101101100101000111010011111011100000111111011101111011111011100010001011101000001011010111110111010011001010010111000011111101001100010100100...

Second Run Input

Bob
00000100111111111111101110111111011111101000000101110011000011010110001001010001110001000111101011111110000010100101110111011011010000001001011111001101110011011100110111111000111110011100111101010111010100001101010101101100010000111100010010101000000000110100111110010001011000011010001001010100...

Second Run Output

000110110111110101100111010111010110010101010100110100001110000100110101111101011001011111001110010111011101000011110100000110010110000110000110100010010110110111011011010011101101000110110101111001010110011110011100010100110001111101101110001100010110011100001010010001011110110100010110000011011111...

Third Run Input

Clara
011111011100101100000100111010011101011111011100000111011001111001111101000100111011001010111111011101111011011011010011011001011100001001101001101001111101011101101100101000111010011111011100000111111011101111011111011100010001011101000001011010111110111010011001010010111000011111101001100010...

Third Run Output

10 59
61 60
35 77
41 8
86 26
47 53
71 33
74 27
13 75
77 35
61 32
6 6
43 54
1 66
93 88
1 62
34 8
100 16
17 50
37 27
75 79
100 7
92 2
29 21
44 74
60 52
23 72
9 13
93 52
17 12
1 50
39 95
43 13
43 59
39 28
10 61
56 28
95 92
62 48
86 39
51 49
33 58
80 33
94 55
26 29
80 68
92 90
2 85
50 3
45 11
8 23
42 67...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #257:

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

First Run Input

Alice
010111001110010011110110001101011101010110000011110010111001010100001101110101101000100100100010110011111011000111010100010101100000100101011010010001111110101001100011100101011011111011000000011110011100010010010110001010101011011100110001000000011001110101100000100011100111001100001100000011...

First Run Output

011110010011001000011101001000011110110011111100111101111001011110110001100110010100010111011110110001000010101001100011111110010001100100011011110010011110110010010010110010011010011110010011111100001001010010111110010000010110100101110101011110110010110000010110101010011110110011101010100111110011...

Second Run Input

Bob
01101000110001101010111011101011100111101111011001110101110111000000001101011101011100000001011101111111000000100110111101111010111000111111101110011010110111000111100100111010010100111100000111011100001110010101000111111000100110010001001111010010011100000011110000001001011101001100001001011001...

Second Run Output

011111110111101001110001010010110111101111110110110000110111111011010110100100100000101001110111110100111111011111010111001010011110001010000000100110110110001100111010101010010111010110111101110001010010100011101010001111011011000001001111000110001101010010000010111100000010000110011001101110111001...

Third Run Input

Clara
011110010011001000011101001000011110110011111100111101111001011110110001100110010100010111011110110001000010101001100011111110010001100100011011110010011110110010010010110010011010011110010011111100001001010010111110010000010110100101110101011110110010110000010110101010011110110011101010100111...

Third Run Output

7 67
94 19
21 60
69 86
59 82
84 40
81 83
62 67
30 92
30 52
46 68
25 90
32 31
73 96
98 71
28 91
90 14
87 27
96 63
29 33
75 32
49 24
23 30
50 77
9 34
17 98
33 74
91 73
58 26
68 43
33 16
54 41
98 8
34 63
43 80
98 32
10 84
4 30
32 44
62 22
82 67
57 44
33 75
27 88
91 96
7 34
29 13
38 96
50 90
66 43
18 48...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #258:

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

First Run Input

Alice
100100100101110011111001000000010111011101011110110111100010110010011110110001111010000110000000001000001011110010101100110111110000011101001001100110000111110100100001100111111010001001010001100000110010001000010101111100010110110011111010010011000001011000100101001111110111000110000100011101...

First Run Output

100110011001100101110111101001100110000000111000001001101000100110001000100001111111010110100110101111101110100001001111100110011111001101011000010101100100011110001011110110101111100110011111111001111101001111100100110010011000010100010100100100011001110010110010000110100100101010001000110010111100...

Second Run Input

Bob
01101111101000000111001100010110100111001100101011101111000001001101100001100101011001000100100001010000011110110100011010111011100001001001111111011010100010010100101010101010101101111010010010110001001110000101000010110001010100101001110111011110001001000000111000011010101111100011010100000000...

Second Run Output

011000111100100100100001010101110001111101011100110100010000011001111110011101010010100110110000111110001110100011101000111000111100011001101011111001010000111100100010001010011011111000111110100011100010101101010001111100100011001110111111011000111111001001100011000000110001111100001110001000101101...

Third Run Input

Clara
100110011001100101110111101001100110000000111000001001101000100110001000100001111111010110100110101111101110100001001111100110011111001101011000010101100100011110001011110110101111100110011111111001111101001111100100110010011000010100010100100100011001110010110010000110100100101010001000110010...

Third Run Output

82 46
17 2
3 68
52 27
51 40
49 40
12 8
21 65
41 60
62 77
86 97
38 19
61 16
51 92
72 5
17 12
98 5
14 31
80 41
17 75
48 2
69 86
25 7
77 60
10 35
2 56
32 59
71 72
66 84
39 64
2 65
47 41
79 24
66 70
83 66
62 45
71 38
4 2
69 21
69 13
56 82
79 39
4 36
6 30
32 92
67 96
33 24
89 35
71 66
88 89
89 3
51 72
28...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #259:

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

First Run Input

Alice
111111111001000101110011100111111110000110111001101011101101010000000000010110001011100001010011000010110101111000010011000001011001100111011011111111011111110011000100000110100100011011001100111111100011110011001010010011010010001000010111010010111111111101000010011111111001110011100000010000...

First Run Output

111000000010101001010010110111011000110010111100011001010111011000110011100100110110000011110000100000010100001011101001111000010001001010111010001100011000000001100101010011100010110000010000000101010001100000110000000010000100001110001000010000000011001000111010100100110000010000010010100001111011...

Second Run Input

Bob
01011000001011000100111011001101101000110010100011011010001010010110010010100111011111010001110010010011011110110101101000110011100101010101001110111000001010100110001100100111011111010000011111101001001110100001111011010111111110010110000011010010101111110110111111001010110111000100100101011111...

Second Run Output

011001010100101101110000000001110001010001111000101010010001100001000000001000110011000110000001111010111100010101001010100001100111100110000110010110100001011110011001011000000111101001000001111001100001100100001001000110001101111001101101110001110001001101010001010010110001010111111101000001001010...

Third Run Input

Clara
111000000010101001010010110111011000110010111100011001010111011000110011100100110110000011110000100000010100001011101001111000010001001010111010001100011000000001100101010011100010110000010000000101010001100000110000000010000100001110001000010000000011001000111010100100110000010000010010100001...

Third Run Output

69 7
84 5
78 25
22 1
55 77
3 22
61 89
45 98
17 26
33 16
19 36
81 12
95 58
42 87
27 27
87 56
64 57
79 51
90 62
38 86
100 48
80 30
87 75
89 32
72 99
100 83
12 60
25 36
49 57
21 96
4 38
97 39
3 11
55 68
94 83
6 72
65 50
13 10
55 27
2 2
74 60
61 100
83 44
35 85
26 87
49 61
75 30
74 98
90 55
32 74
99 11
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #260:

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

First Run Input

Alice
001000110110010010001010101101000000111010110010100000110011111111100100111111100110101000101110011101101100111001000101100010010000111111011001101111111101110011101101111100000001000111001000001110010010010100011001101000100111010010101100010010010110100100110010101101110011100101010001101011...

First Run Output

000110101100111100110110010001000010000110000011010000101000001110100110111110001100001000001010000110100100111111110010000010000110100110010101101100101010101101001101101100000001001010101100111010101100011111000010000101110011111011110000101110101111010110101010011100001010001110100010010100111011...

Second Run Input

Bob
01110110010100110011011110110100000001111001100111000011111011101110101100001011010111011111001011100001110001011011111100111101111011100001101111110000111010010111110000111011010100111110001011110001000111000011000111000001010110100100011000000111110101010000010001101111010101000100110000000001...

Second Run Output

010100011100100100110101101110111100101100001001011000101001110100001110000010111010011100010100110100111101001100110000110100011110011010100011000100111100100101000011001101111111010100001100001011011101011011010100010111110101000101001111111100011100110000110110100101010100000111110100000011111111...

Third Run Input

Clara
000110101100111100110110010001000010000110000011010000101000001110100110111110001100001000001010000110100100111111110010000010000110100110010101101100101010101101001101101100000001001010101100111010101100011111000010000101110011111011110000101110101111010110101010011100001010001110100010010100...

Third Run Output

1 65
28 26
48 76
80 30
2 48
43 37
70 22
14 38
55 50
13 95
46 28
54 82
9 62
9 17
88 31
1 90
27 31
99 9
86 74
100 59
93 8
13 19
16 18
63 25
46 73
74 33
57 59
13 52
10 59
51 70
71 82
70 15
39 86
53 26
14 92
4 98
29 43
58 45
69 95
31 1
79 49
42 86
90 90
4 61
89 41
96 99
15 24
47 67
95 11
11 29
48 63
9 3...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #261:

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

First Run Input

Alice
110001101010100001011110101111001000111100010111111101011111010101100000101000011110101111111010111001110010000011000111100100000101100011011000100010001111011000011011100110101010001110111011110101101101001011001111100110111100111000011111001111001110100001100100001111100111000001001111100101...

First Run Output

110000110100100100101110001111010001100111101101101010101001110001110011011100110011001100010000001001100110001100010100001000100101001111010011101010110001110011110101111010111011111000010111000111110010111101111001001011000100110011011001010000110100110100000110101010000001101010110100110000101010...

Second Run Input

Bob
11001000111111110000001010000010101101110000011011011001001001001101110111001110000001011010100100000111000111011100011110001100001010101110100010110111010111111001101111001100101100111010110101101011000010001100000100000000100010110010000101111001101100010010010111110001110101001011011001110011...

Second Run Output

111100011000111001011011000101101100011010010010000111110011101100010000000100001011010011101100011010101001010111100011101000110001011001001111111010111100011001100111101000000010111000110010001100000010011111111000010011111101111010101110111000010001110111111001100110101000010010011011010010011101...

Third Run Input

Clara
110000110100100100101110001111010001100111101101101010101001110001110011011100110011001100010000001001100110001100010100001000100101001111010011101010110001110011110101111010111011111000010111000111110010111101111001001011000100110011011001010000110100110100000110101010000001101010110100110000...

Third Run Output

33 66
64 31
83 11
72 80
59 20
17 15
97 93
63 100
46 3
91 78
59 10
96 29
3 96
58 28
7 82
67 29
71 52
51 46
54 73
88 56
50 52
34 4
40 35
88 79
36 58
73 59
63 96
27 77
41 32
80 50
69 44
91 13
83 21
73 16
30 73
24 4
62 53
62 35
35 14
8 47
41 22
99 9
92 29
82 51
9 36
20 90
53 32
14 42
97 9
83 50
12 98
26...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #262:

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

First Run Input

Alice
000110100011111011001001001010111110010010111011011101010010010100001001101011010010001111101010011011110111101010001111010010011101011001011100000010110010100110111111100101011110111000110001000001010111100101001000110000101100000001001010001011100010001010101101011100001100010001001110111010...

First Run Output

001010010011000111111001010101101000010010110010111001101011101010010010101111100101111100001000010001001110111011101001101000010001011011000110100011101010010000101110111111011100101000010011001011101010100111101010010010111111101100011000001000010001010000101111101101001000010001011010011000110100...

Second Run Input

Bob
00111111101000010110100100100100101100011000010100000001010110000111100000000011001010110111110011100010101110001001010010101110000111010100010001101101111111011010001001000010100110110010100110011101011111110001001000001010011110010010111100111000101110001011001011010101101101000110010011000001...

Second Run Output

001000000000011111001001010010001100001010000011101100110011000100000000010100010110110010001100001000101101000001011101001100000000011000111100011010001100000010011011111011100101000100000000101100111111010010000000000000011001001001000100000000001011010001110010000110000100000001010110000011001111...

Third Run Input

Clara
001010010011000111111001010101101000010010110010111001101011101010010010101111100101111100001000010001001110111011101001101000010001011011000110100011101010010000101110111111011100101000010011001011101010100111101010010010111111101100011000001000010001010000101111101101001000010001011010011000...

Third Run Output

46 9
93 18
9 91
33 73
6 16
99 13
64 69
33 37
38 70
61 5
15 3
86 3
59 1
57 49
96 86
81 40
97 16
4 20
16 81
98 93
66 18
2 95
15 47
39 61
75 6
11 82
88 37
67 98
9 62
10 12
22 57
9 98
96 23
21 83
12 74
51 46
55 19
44 77
13 92
11 67
9 44
71 51
88 17
86 37
64 76
10 65
26 23
28 74
19 85
43 44
82 48
45 36
2...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #263:

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

First Run Input

Alice
101110100110001000110101111001011000100001001001001100100010011101000101110111100001110000111011010010111011000010011010010000101010010001101110010011011100011010100100000010101100010101010101001100110101101011101100100111101011011111111100111010011110101110101001111011000111101101010001100001...

First Run Output

101101100011000010011100100001100101100011100101011010111000001101100101111000101001100101100111100101111001111010111001101101101000101010000110011101000101101110101001000111011100101111100011010111101110110001100101101011000111000111010000001101101000100000110000110000001111101010100000000110011100...

Second Run Input

Bob
00101001000000001110001111010000011111111011101100001101010010111110101011001101101010101100000111011010001110111100001111101000110110000111000011011011110011111101001000110001011100101101100111111010000111011000111010111110010011000111101101101111011001110000010011100100011111100010000111011011...

Second Run Output

001011101011101101101000110101011111100011000100100010100011011011100011110100011011111110011011100010100101101101000101011111101001010100010100000100001011101001100101011001000001001011101010100010111000101011011011101001101110101000110001011111101010010000011110010110001011101000010111010011110001...

Third Run Input

Clara
101101100011000010011100100001100101100011100101011010111000001101100101111000101001100101100111100101111001111010111001101101101000101010000110011101000101101110101001000111011100101111100011010111101110110001100101101011000111000111010000001101101000100000110000110000001111101010100000000110...

Third Run Output

78 8
19 8
42 77
93 80
15 60
77 7
90 49
46 34
51 6
27 18
56 70
8 50
91 76
75 80
78 61
69 93
7 55
67 2
65 89
40 92
62 88
32 73
6 57
39 3
96 42
34 4
7 50
52 26
6 84
40 52
99 16
75 93
50 84
34 19
61 71
52 42
73 45
36 66
27 32
70 81
15 95
91 46
89 10
26 94
35 45
86 14
44 6
89 82
49 39
99 54
55 52
96 84
9...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #264:

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

First Run Input

Alice
100000110010011111010011110001110110011101111110101111000000101110001000100111111001000101110111110111000111010101001101101110001110110010111100110111011010101111001100001011100110110110010000010100000011100110001001001001000100101101111001100001011101000011101000110001110100100011110001101111...

First Run Output

100011001010100110011011101110110010011010010001100101111011100000011000001110110011111101100000011001101110100100111111110000011001010100110000110011110000001000011101110001011001100001011000101101001110101111110000001011111110011011110101100001011001111000100010010101100010011000100101010001001001...

Second Run Input

Bob
00010111010010100111010101100110010000000000000001000111100001110010110000101000010101111111011100110011011011011001000000101100110001011110110011001011101100001010010100010110010010011010000001100110011101010100100000101100100001001101100001100010100011010101111010111000111101001001011111110111...

Second Run Output

000101010100100001011010001001100101010101100011101110111101001101010110001100001011110010100101110100001110011000101111000101010101001010100010001000100101010110110001101111010111001101110110011111111001101111000101110111010110011011011111101101110111101010010010001000101101010100011011001000100100...

Third Run Input

Clara
100011001010100110011011101110110010011010010001100101111011100000011000001110110011111101100000011001101110100100111111110000011001010100110000110011110000001000011101110001011001100001011000101101001110101111110000001011111110011011110101100001011001111000100010010101100010011000100101010001...

Third Run Output

75 6
94 37
93 19
13 21
80 9
75 41
30 45
92 10
28 93
85 28
67 40
94 16
41 13
80 23
38 23
9 34
49 96
34 78
67 21
10 53
48 62
3 9
5 3
74 88
75 1
6 40
13 64
94 62
44 38
20 15
97 97
43 20
38 52
84 54
88 7
64 33
99 35
79 69
69 87
16 13
71 23
20 6
64 55
72 88
99 82
81 37
17 38
38 77
42 79
88 70
60 33
83 56...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #265:

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

First Run Input

Alice
001101001001001110000011001100001001010100111001111111001001011001011111011011111111100001000110110001110100000011010000000010010011001011100011000001011111101011110101110011010010111001011111111110101011111101110010011011011011110110101000010001100010010100101111011111110010110011100100011100...

First Run Output

000010010100011001101100111111110110000101010100011111111000100100011011011000000001101010110001010000010011011100000001010110011110111000011100101011000111000110111000011001111101100110011000010100101010001111010000010111100111101111111110100100010100011010010111110101010000000101010001001000111100...

Second Run Input

Bob
11011011101011101000001001101001001111101001110011001000101100110011101100001111001001011010100110001010111111111100100101101011111001110100100000111001010011101000110110101001110101110001000010001111000111100100101111100001001000010111001111110111110111101111011000101101110011010011000100111000...

Second Run Output

111011110011001010010111100110011011110101011101100111000101100111110011100001110110101011000110110101100101101011000001011011110100101101011011100100100011110110001011111010111110000111110001100111101010110000100010110011110101100001010100011011110100010111101100101010110110110000110011110110110010...

Third Run Input

Clara
000010010100011001101100111111110110000101010100011111111000100100011011011000000001101010110001010000010011011100000001010110011110111000011100101011000111000110111000011001111101100110011000010100101010001111010000010111100111101111111110100100010100011010010111110101010000000101010001001000...

Third Run Output

78 25
28 1
48 30
35 96
65 51
14 22
68 100
3 10
88 3
5 63
55 48
75 75
35 93
65 83
43 16
21 82
96 59
58 35
72 73
41 96
83 34
43 64
29 27
17 66
68 90
13 19
54 2
75 7
69 73
32 37
89 19
91 52
13 4
11 36
70 75
91 12
1 68
22 44
95 76
21 65
61 90
74 95
73 13
72 15
8 10
70 74
19 79
49 71
27 64
86 27
67 34
29...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #266:

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

First Run Input

Alice
011000001000111000111101100110110111010100001110101001001010100011100010010100001111001111010101101111000010111101100000111001110111101001111110100000101111010101000101100010001111011001000101000010011011011101011100101101001001101111001011111000010100111001100101001001010111010100000100001101...

First Run Output

010000001111101000000011101100010000001101001100110100100110010000001011110110101101010101010000001001111011100111001011000000001001001100100001001111000000001101110011011001001000010000001100110010101110110001000001001011101110101101000101000000001000011110100010100000010000001111011011100011010011...

Second Run Input

Bob
11110100001101100101001100111100110001100100110011010110010110110101011110010110110111011011111110100111110000111010100110101111011101101101100000001001011111010000101000101010101111000010010100010001110010111001110101111011111111000101001111111101101010010010111100111010101100100111001001111101...

Second Run Output

110000010100000101011111011110110001010011011000111010101001010001010100100001010000100110110001010100100010110110101110010001010110100110010010110100110000010010000101011100101111010000010010100011000010101010010000010010011101111010100101110001010011101001010011111101110001010100010010100000110110...

Third Run Input

Clara
010000001111101000000011101100010000001101001100110100100110010000001011110110101101010101010000001001111011100111001011000000001001001100100001001111000000001101110011011001001000010000001100110010101110110001000001001011101110101101000101000000001000011110100010100000010000001111011011100011...

Third Run Output

83 55
88 25
100 20
57 53
58 36
11 70
37 78
10 19
78 32
3 19
88 77
51 21
78 27
18 88
56 86
67 95
83 86
48 59
71 76
21 53
33 6
12 4
92 74
56 4
77 40
36 18
60 53
85 53
75 10
35 55
70 68
68 90
16 31
31 90
33 69
68 45
72 28
95 79
85 31
42 29
60 90
73 66
78 20
12 62
33 88
57 93
37 88
32 13
4 98
76 78
74 4...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #267:

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

First Run Input

Alice
000001110101101110000001000100111011011100000101101111100010110100000101111001111100010011000000111101101000101110000110110000111100011010000100010111110000010111010011010111000111000011000111101000011011101100001011010100101011010101100110111110111101000111011111011011011000110001101100011111...

First Run Output

000110000101010011101010010111000110100100111100101111100011100110000111111111001110000000000111000111110100000101101011010111100111100001011101001001000110000100010000010101110101110111010101001011011101011000110110000100110111110110010100010111110100100101101000000000000111000101001000111101110010...

Second Run Input

Bob
11000101110110101000110001110001010001001001000000011111010100001001100000111000111001010000000111100010000010011101011100010100000100101111100110001101110010101000010001011000001010111011011111110000101000001000011101111011101101100011111001001001100111111101101011000111001101000110000100101101...

Second Run Output

110111001100110010011101111100100100001100101000010001010000110110001111000101111110010011110110001100010101100010110100110110001111100000001001110101100100001111110011111011110011100101001110101100011010010111110111001100000011010011010110100110001110000110010111001001110100001100011000110101110110...

Third Run Input

Clara
000110000101010011101010010111000110100100111100101111100011100110000111111111001110000000000111000111110100000101101011010111100111100001011101001001000110000100010000010101110101110111010101001011011101011000110110000100110111110110010100010111110100100101101000000000000111000101001000111101...

Third Run Output

47 58
78 90
50 82
89 41
2 27
39 98
52 79
36 26
77 79
61 99
55 56
12 93
5 99
89 48
39 44
93 8
26 17
12 50
53 9
78 44
50 53
92 72
21 31
63 23
53 82
3 53
35 77
95 14
28 82
58 36
12 30
5 93
91 61
97 91
44 42
31 19
23 85
48 43
17 92
44 47
54 91
32 31
91 83
3 88
28 82
25 6
71 7
31 27
9 43
76 10
82 57
52 3...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #268:

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

First Run Input

Alice
100100000001100001100010100001010000000011001101111110110111100000100010010000001100111000110001101111101000100001011110111110000101111010011010110010010111001100000111101001111010010010110101010011011110001111011010100010000101111110100011100011011000000011000101100000111100011011010100000111...

First Run Output

100000010111101110010001111001100001010111111000000000011101100001000100100110111110001100100001000110101110011000001110100000000100110101101000001110100000000110111000001100110110100001010101000010010011000100100000010100011111010101101001100001000101101111011101010111100000010101100010010111111111...

Second Run Input

Bob
00100001011010010001100110010100101011000101111000000011110111101001001100101000010100011011010010101100000011011010010101011110110001010001011101001000100000000111100010010010010011011100101000111010011111101111101001100000101011011001110111110011100010010001011010110010100001001100111001111001...

Second Run Output

000100101111001001101111110001000100111001110000110011000010000101101010110101110100001010010101101001000000101110110010001101111110100100111111010011001000101101100010101000000010001100101010101000001011111000010001101110001100100110100100000100111101000100101000001110000001111110100010101000111111...

Third Run Input

Clara
100000010111101110010001111001100001010111111000000000011101100001000100100110111110001100100001000110101110011000001110100000000100110101101000001110100000000110111000001100110110100001010101000010010011000100100000010100011111010101101001100001000101101111011101010111100000010101100010010111...

Third Run Output

52 87
28 95
20 68
97 69
69 66
3 42
32 73
65 90
54 55
64 26
54 75
92 8
82 15
37 11
5 21
67 42
29 64
3 36
95 95
72 21
6 80
44 5
49 98
11 63
42 45
31 41
42 78
15 89
36 6
4 41
76 14
4 78
48 7
34 66
33 40
22 88
13 88
5 25
20 69
47 62
46 41
25 6
30 59
19 74
100 1
69 44
56 98
89 40
98 88
78 94
31 64
68 36
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #269:

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

First Run Input

Alice
111111001000011000001000000010000101010110111101110001100001010100101010000011011010101000011100011111100100010011110001101100111101111101111011111001001001001001000011011110001011010110000011001100011010111100011101110001010100011101100011000011100000001001110011101100000100001000011000101000...

First Run Output

111000010010110100110000101001010000100000011011011110100100101000000011000010111101110101011100100000110010001110111011000100100010100111110111100000001000100000010010111111101111101000000010111000101100110010111100000000100011111111001000100100110000001010101101111000001100010010011001011011101100...

Second Run Input

Bob
01010100100010000100111001110010010101011010001101100101001010001101101100011001001110100000010111000101010001101100001000011111110001010011100001101000111011111101000010010100101011100101001111000100000100111110011110110110111001000100100010001100110101101101100000010101111010011100111000111011...

Second Run Output

010001011000000110101100100011011001011011111010110001100010000111011000111011011011110101000111011101000110101010001001010001011111000101001111010110001111011010110001100110100000000011001001100000101001110110010001011110011010000000100011001011011100111111010101110101000011011101000010111010100101...

Third Run Input

Clara
111000010010110100110000101001010000100000011011011110100100101000000011000010111101110101011100100000110010001110111011000100100010100111110111100000001000100000010010111111101111101000000010111000101100110010111100000000100011111111001000100100110000001010101101111000001100010010011001011011...

Third Run Output

12 51
56 35
7 3
31 67
64 49
68 53
36 3
38 56
90 49
67 79
50 36
64 14
97 13
93 11
20 95
61 26
33 76
24 36
3 82
40 34
97 82
59 47
2 51
27 71
37 22
28 13
82 35
88 61
33 47
4 9
86 91
53 1
11 91
56 97
22 22
54 61
31 99
91 75
18 65
59 64
53 77
37 44
96 63
90 19
74 10
81 24
28 4
66 100
96 42
23 8
82 93
53 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #270:

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

First Run Input

Alice
110101110010101101011000001001100100011001011111000100100010100101000100010011010110010101100000110001111010011000011111101011011000001001101000001001110110001010101101000010011000011100101110110100100010010101011011110101001111001110001001100111000110110100001111010111001101100010111100001110...

First Run Output

110000000100000100011100000000100000001111010110100011101011110000011100011110000010111000100001001110110011001000101101100001000100010100100010101010110000000111101100000111011100100001000101110111010001100100100001011111100010000010001101110001011101001000010010011111110001000101000100110010101101...

Second Run Input

Bob
10011100011000001010100011011000011101011001011100111001101101101100011000101111111010100100011110001011101010011010110101101010110001001011101011001010010010000011000010001011010111100110101011111001111010001101000011111011110000100000010010101100010100010000001111111111010001111011000111001111...

Second Run Output

101111001111101101111101110001101100000110100000101101101010101110000100100101100001111010111000000110110011000011110011101101000101101011001010001010111110000001010101101001000100111101001001111100001011011010111110001000001111001010010011111101000110110001110011101001111100001101111100101100100010...

Third Run Input

Clara
110000000100000100011100000000100000001111010110100011101011110000011100011110000010111000100001001110110011001000101101100001000100010100100010101010110000000111101100000111011100100001000101110111010001100100100001011111100010000010001101110001011101001000010010011111110001000101000100110010...

Third Run Output

25 54
75 25
70 58
90 81
8 87
27 46
15 23
94 19
92 10
37 63
97 76
57 69
27 81
34 30
50 42
3 79
100 12
73 82
54 12
71 79
52 4
76 62
8 32
45 31
79 14
39 23
46 17
20 45
68 74
11 26
75 21
64 37
53 74
82 71
55 44
73 32
98 23
69 40
48 25
55 1
43 72
45 51
11 86
35 76
69 59
81 16
62 9
27 24
68 86
53 94
39 20...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #271:

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

First Run Input

Alice
101111110001101101100101011000000101100010010000101111001001100000010111110100000110110111111010110001001010010101001100110111110111110011011011010100011110000100000101001111110001111000100111101110000111100010111000001010101011011000001100010011011000011011000100000011010001011111010010100100...

First Run Output

101001100101001010100010000000100101101111110000011010100100100000101101010010111010100111101100100111001000011110100001101001100110010111001010111010101001101100000111100001111111100000101110111101001110110011100000100100011100101111010011100100101100001000011111010001101101101100001010010111100001...

Second Run Input

Bob
11001011000101101111101101100111101111111010101011011111000101111011100101100101000011101011100010111000001101010011000001001000100100000011100010011000101010011101111111111111101101101010100110110111001001010111011110010000010010010100001101001010001111111010010111001001000000110001110110011111...

Second Run Output

111011111011110110010111111001101000001110110110001001111110101000101000110111000111010010101000111011111010001000011111001011001101011010110011001111100011111100111001111010110101010010001010010010010001101000101001111101000111011001100011000000101011100001010000001010110011011110111001111010011000...

Third Run Input

Clara
101001100101001010100010000000100101101111110000011010100100100000101101010010111010100111101100100111001000011110100001101001100110010111001010111010101001101100000111100001111111100000101110111101001110110011100000100100011100101111010011100100101100001000011111010001101101101100001010010111...

Third Run Output

21 64
23 91
24 100
78 61
88 9
16 46
90 68
67 58
80 28
99 29
67 7
57 95
95 9
33 71
22 19
11 57
16 51
66 48
73 83
39 22
31 14
14 16
35 100
55 72
62 39
62 70
17 21
46 88
15 60
8 94
46 13
84 1
32 35
74 89
59 68
76 42
6 73
100 84
9 48
9 35
41 7
39 58
20 100
68 91
55 76
41 62
99 67
68 42
80 49
3 78
59 79
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #272:

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

First Run Input

Alice
010000001001000110100100101110011101101010010001101001111011000110110110000100011100000100011101110000010101011110100001111100111001001111101111001110010010000010001100100101100000010011100101001000010000110100010111010111101100000101110000000000111101011111001010001100101100101111011001101111...

First Run Output

010010101101000110101100000001011010001100110001001000111011011100001110010010000101001000011110101111000010100010010111110000101100101100111101111101111010001101001110111100101001110110001101100010001100110111010110101111000111011101110011110010101100000111000011110110111000001111001010001111001001...

Second Run Input

Bob
11111101101001001101111101110111011101010101011000110101001101111001110011110110101010101111010010010001010100011001000010100110001110001100011001000000000000100100010100010001001001110011110101111010000011101100111111100010000011001111111100100110100110110100001111011110111011110010001000110110...

Second Run Output

111011001000001000000110100110111011101001101110000110010100111000001001110100000101111100111001101100010111001110010110111011101001100000010111100111111000001110010001011111011111111000101010101101000101011110111110001000010000100000101011111001001110010010001100011111111000001011000010101000111011...

Third Run Input

Clara
010010101101000110101100000001011010001100110001001000111011011100001110010010000101001000011110101111000010100010010111110000101100101100111101111101111010001101001110111100101001110110001101100010001100110111010110101111000111011101110011110010101100000111000011110110111000001111001010001111...

Third Run Output

100 74
94 19
6 19
83 40
3 69
35 51
33 10
84 26
49 85
57 29
14 15
63 31
14 40
23 83
97 20
90 85
9 77
95 82
24 37
30 80
77 23
23 72
44 9
19 50
44 10
89 14
22 15
24 48
79 6
4 12
88 38
82 91
17 47
38 13
58 10
18 55
60 28
98 95
1 51
58 89
36 66
25 21
71 32
85 64
85 67
85 22
24 61
70 60
89 90
21 64
17 28
...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #273:

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

First Run Input

Alice
010001111001001010111010110000010011010110101001111010001101100111101011111100011001111101001110111000010010111100100010011010101110010000000101101000001101001100101010111111010010100110100010110011011010111011111100010000001001100010100100011100111001001100111011000100011000100011111011100000...

First Run Output

010011011001111000111000000110000011011000101001000010010100000011011101001111110110101110010011011111010010001110000110011011011110010111110111011011011011011000011000011111001111000011011110111101011111000110001011011100111100110111111001010011011101001011001101101111001011011011000110001100010110...

Second Run Input

Bob
01010111001111001000110100000101110100110111001001110110110011001111110010110000111100100000010110100111111010010100010110111100101000000100100110001000100101001000110010000100001011110010001010010100100011100001011110001000101001101010010100111101101011001000001001110101100100001111100100001101...

Second Run Output

010010011100100010011101110101010010011000100011011010000010010110011110110011000000110001010010011111011111100110101010010110011101010100001100001011010110001000010110110110110001010110011000110010010111010010010110011011101001100101111001010010001001000011101010011101010110001111110101100001101001...

Third Run Input

Clara
010011011001111000111000000110000011011000101001000010010100000011011101001111110110101110010011011111010010001110000110011011011110010111110111011011011011011000011000011111001111000011011110111101011111000110001011011100111100110111111001010011011101001011001101101111001011011011000110001100...

Third Run Output

76 44
19 52
12 64
82 57
28 19
38 64
88 87
43 59
87 95
15 13
64 45
76 25
19 6
71 51
59 99
96 84
42 63
2 40
86 21
41 59
91 80
69 51
39 99
10 85
48 11
57 57
23 71
34 22
1 53
58 70
62 5
35 32
36 85
15 44
7 95
35 21
58 86
54 73
49 59
35 42
27 6
28 77
92 11
39 15
11 12
27 82
25 18
36 24
81 48
12 37
5 92
6...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #274:

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

First Run Input

Alice
100011100010100100101110111110101101111000110101110000011101000000001111010111010111101001011111100000110100101011001000110011110010111001011111111100100100100001101000010110110101100000111100101110001110101001000001001101100111000100111101110111010011000101110001101011000011110101011001100011...

First Run Output

101001110101111100101000110110111001011110011000001010111001101001010000010001001101001110111011110110010000000001101110101101111100001000111111000101101011110111110001000010101011101001110101001101001010001111101101011001101001010110110010101111110001001100111111110001111111110101110111011101000111...

Second Run Input

Bob
00001110100000110110011110101111100101101001110011100010110110100000000001001010110101111010001001101100110111000111100001011011011000111000111100000111101110001011101000000011101011110101100011100111100100011111000100111110111000001001010100010101000011000010111001101011110100110111100111000110...

Second Run Output

001000010111000101001010010101000000001110100110100101101101000001001100011100011010111101001001001111001111010100100111000000010100110101100010100100000000010101111110101111010000001001000101111101111111001011000000001101011100010101110110000000001110010001001011001010001000001101000011111111101100...

Third Run Input

Clara
101001110101111100101000110110111001011110011000001010111001101001010000010001001101001110111011110110010000000001101110101101111100001000111111000101101011110111110001000010101011101001110101001101001010001111101101011001101001010110110010101111110001001100111111110001111111110101110111011101...

Third Run Output

50 75
75 47
33 56
20 69
51 40
46 9
29 1
16 39
56 65
36 98
48 90
74 97
5 46
32 19
3 62
54 71
30 78
78 68
97 35
74 95
49 3
9 20
39 25
13 56
31 13
33 38
96 59
54 4
24 46
43 71
72 61
69 79
56 52
70 57
78 65
12 52
42 10
74 14
82 93
45 45
81 81
93 61
100 6
88 3
64 4
7 83
42 17
77 33
70 93
5 33
10 23
93 33...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #275:

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

First Run Input

Alice
111011100001101000000110001110100000100010111010110000101010110001000110000101101011011100011101111000101110110011111111011011000110110111111100101101001111000001111111011010101100011101000000111000000111100011100100101010100110111111100110110100001110000100001011011011011100110000000001101100...

First Run Output

111000110001110100000011001101010100110010101000011011001111111010110111011001101010000011010010110111011110101101110010111000110101100111010100010101010010110100111010000001111011011010010101100101001101000000111000110001001110110100011000110100110000100000111110110010011000010011111010110101110011...

Second Run Input

Bob
11110001010101110111110111101101100001101111001101010100010011110101101101101001000110101111010010001111001010101111101110010010000001101111101010110010010110100010000111010101011001000001111010100000110101101011001010101110110110010111011110010011100100110000000010110010100110110011000011001111...

Second Run Output

110101010010110101010001101001001010010000111001110001000111001110000011011110000111000000110111000010110110110101111100111100010010111101101001000110101001010001001001001111111001001111000011111100011001100011110010000000100000000110101111000010000011111110011001111011010100000011101100110001000010...

Third Run Input

Clara
111000110001110100000011001101010100110010101000011011001111111010110111011001101010000011010010110111011110101101110010111000110101100111010100010101010010110100111010000001111011011010010101100101001101000000111000110001001110110100011000110100110000100000111110110010011000010011111010110101...

Third Run Output

77 76
7 32
94 3
46 21
68 70
74 10
79 60
65 73
15 69
48 57
23 58
55 27
66 4
33 18
58 52
100 62
88 24
62 15
45 44
4 68
100 7
65 67
18 16
52 1
20 20
29 2
26 54
18 45
29 14
19 46
46 84
38 3
76 91
31 13
98 29
81 65
7 90
80 17
28 77
79 15
70 87
89 91
38 92
21 65
16 4
7 8
92 34
35 53
98 56
31 99
97 69
90 8...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #276:

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

First Run Input

Alice
001111111111111000000111100000011000010000110101110010001111110101011100100101000011101011000001100000101001110001101011001000010010111110100100011000011000111000111010111101101010011110110100010001011011000011011110011000100001010011011101101111100101000110100111100001111110000101110111100101...

First Run Output

001100010000010010011000111110101100010000001011110001110100101101010000010011000010001011101100010101110001111010010000101100010101011101010001101110001100010101001000100100011100001101010111010111100000011000101101010011001111100001100000101100010011000110101110101001101101010000001000000000010111...

Second Run Input

Bob
00101101110010111111000001010100010100110110111101001100111000101000110011000001010001111010000110111010111101101101111001010101000101011100011101000110111100010101100011111111101101001100000100101001000110101011100110000110100110101101000011010010010000110110110111100011010100100000010111011111...

Second Run Output

001111011111011001001000101111001011001100100001000101100100001011101110100010010011000111001011010010001011101011001001001111010011101110011111011110001011001010111010111000001100001111011111001000101101110000001011011011001000101000001001001111011000101100010011001100001011101101111001111011010101...

Third Run Input

Clara
001100010000010010011000111110101100010000001011110001110100101101010000010011000010001011101100010101110001111010010000101100010101011101010001101110001100010101001000100100011100001101010111010111100000011000101101010011001111100001100000101100010011000110101110101001101101010000001000000000...

Third Run Output

51 74
24 43
58 88
8 36
77 61
58 5
16 95
24 7
100 69
75 70
30 2
94 73
22 34
65 54
39 14
67 80
8 18
27 86
16 99
83 17
49 59
24 59
77 59
64 69
67 36
22 68
96 57
52 86
8 65
29 50
70 74
86 79
21 16
11 64
26 96
26 35
11 18
33 21
45 31
55 29
94 1
92 99
26 45
45 3
5 8
20 27
52 99
44 79
61 71
71 40
67 71
7 7...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #277:

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

First Run Input

Alice
100100101111010111010111110100000100111010110101101100101101111010110001000111000010000110100101010011010011100001110010010100000000100011001100010010111100110100010100111101000010100100011010010110010100000111111011101001010000010010101111011000011101011001010011110011000001011100101011110011...

First Run Output

100111101011011001010000011001100101111011111000100101010110000101101000010001111100000111110111101001011011011100010010110101111000000100110010010111110101101001111111000111010111010101101001101010100101100011010101111011000001101000111011000111101000111110101111110010000101101111100111110010100101...

Second Run Input

Bob
10001101000111001011001000000100100101110010001111110010100111010010100111000001000011000100110000001000101100111010011110010111001111010100001111001100001011101101011100111100011011111100101111101111101111110100001101000001010110110110101000110001001011011101011110111111000100000110011110011001...

Second Run Output

101010010010101110110001100110011010010011010100101100010000100100010001011111011101111010011110010001101000110010010110110010010011111011101000101111101010010110110100111101111100010000010110011111010110001101000000010010101000111111111111111110010100000100011011100010100000010000000011001110111110...

Third Run Input

Clara
100111101011011001010000011001100101111011111000100101010110000101101000010001111100000111110111101001011011011100010010110101111000000100110010010111110101101001111111000111010111010101101001101010100101100011010101111011000001101000111011000111101000111110101111110010000101101111100111110010...

Third Run Output

23 69
48 59
4 6
78 47
25 83
26 45
59 34
67 56
15 62
23 96
27 59
58 68
59 82
24 85
91 58
15 99
3 59
36 86
83 11
32 33
52 60
26 21
88 65
24 8
95 52
37 53
32 38
48 5
11 81
95 4
3 88
56 80
54 88
47 77
30 67
54 98
9 95
37 63
67 50
6 45
20 2
7 79
30 62
73 26
24 11
37 97
93 76
76 70
15 53
16 52
17 42
44 28...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #278:

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

First Run Input

Alice
001111010101101010100101100111010001011111010010100011010111110110000001000010001100010011010010111101010001111010111101010100111001110101001110100100100111000010101101000100000101110110010011110000011100000001110011011010100111010010001011110110000010110011010010111000111001011000111010011100...

First Run Output

001110001101100111110011110011001010000101110010001110011101001111001101101111110011100010001110011100101000000000011110001110011110000101010001100000001011001110101110011011001000001111010110100110110011000100001110001110111110001000101010001011011101101000001000111100001010000100100001110110100001...

Second Run Input

Bob
00001010001000001001000111011000101110011110000101011011011101110000100001101111000110110001100111011001111110001100111000010011100010010110001000001111101011001101101001011000000000100101000011001000000011001111101110100111001000001011001101010100111000010010001011110100100010001100011001010011...

Second Run Output

001011110010011001000110000001011011000001000100001100110101111001001001010110011100001111001011000001001111111011001101011001001011000001111101011001001011100011100100100100100100011011001000101101111111000001101001101000111001100101001001001011000000100110101000011001001011100000110001101011110000...

Third Run Input

Clara
001110001101100111110011110011001010000101110010001110011101001111001101101111110011100010001110011100101000000000011110001110011110000101010001100000001011001110101110011011001000001111010110100110110011000100001110001110111110001000101010001011011101101000001000111100001010000100100001110110...

Third Run Output

48 49
78 88
31 9
75 7
34 17
23 96
38 71
76 44
4 36
65 70
59 63
26 20
17 52
88 33
50 89
65 26
60 91
79 36
86 29
48 44
95 60
95 100
82 59
87 52
100 21
71 24
93 93
35 9
42 63
61 46
71 71
25 47
62 79
81 37
34 13
81 98
99 40
70 6
55 77
22 37
60 77
75 61
34 91
44 65
17 74
25 11
98 86
39 38
40 91
99 49
55 ...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #279:

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

First Run Input

Alice
001011101011110100000110010111101011111110010100011111101001110010100010010100111111010001011100110011110110000101010111110000011111100001110001101011100101101011011100100000111010100110100010010110110101011000010010010101101001110101011001111000111010110001010011000100000111011101111000010110...

First Run Output

001001111111101001010011000100011001000110110001111011111010000011111110011011110100110010101010111110110011111011111010000010000100001010100000001101111010111100100001001000110000110010111110110111100010010100101011101111100101010001010101011010010101001101011111000101101010100110011011001100011101...

Second Run Input

Bob
00000100011010010111011011101010111000111111001100110011110111100100001100011011011110010001111001101011111100100001100011111010010110111111110001111110001101101100011110011110010011101110010111000100011100010110111000111111110100101100011111111001011100001010101111111111000010010010101010000110...

Second Run Output

000101000111000110001110000111110101010100000110110100100001011111000100001101110011010010000101010110011110101110101110000101001111101010010110100000111011011100100110101001000000011011010111011111010101010100011111010111110000100100000001101011011100111010101000011011001111001101001101011011011010...

Third Run Input

Clara
001001111111101001010011000100011001000110110001111011111010000011111110011011110100110010101010111110110011111011111010000010000100001010100000001101111010111100100001001000110000110010111110110111100010010100101011101111100101010001010101011010010101001101011111000101101010100110011011001100...

Third Run Output

67 95
74 73
99 60
99 9
55 49
21 75
34 34
94 48
71 78
45 75
74 85
91 26
90 100
18 7
64 59
29 34
66 30
12 51
1 84
20 56
25 53
12 74
69 23
26 88
12 44
60 53
77 40
68 70
91 78
76 36
75 74
62 17
5 61
73 40
99 99
14 76
38 20
57 69
47 49
36 79
29 89
58 64
39 23
38 32
91 81
16 5
11 89
90 87
29 29
79 36
57 5...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #280:

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

First Run Input

Alice
000010010010101101111111000110010101001111111010011010001111011110110111010000000000011111110101111001111111111010011010100011010100001011111111111010001100100111100101100100010010001111111000000111110111101010110000010111101101100101110000010011110100111001101010000110100111001001010111011011...

First Run Output

001000011000101101111100000110001100010010001000110011011001011100010011001110011000111011001000010010001110100010100001011000011000001010101101100000011000010000001010111010110110101000010110101010101001101000001100011110101111010110001000001100110100000101101010000001001100111101011101010011001001...

Second Run Input

Bob
10100110010001010001011010001001100001000100111111000100111111010111101110010000010110001111110100001000000001010100001001101000100101000001001000000011101000000000000111100000111001001000101011110001100111011111001010111010101101010001000000010110111100000001011010011001111001100011101100011001...

Second Run Output

100100010111010000101011111001100100010100010000000100101111101100010111100110111100101111101100001000100010100101010010101100010101100100011111101111101100001100010100001010110111100100001100000110010110000010100100001010111111000101110011101100010101101011101111101001101100011100101100111001010001...

Third Run Input

Clara
001000011000101101111100000110001100010010001000110011011001011100010011001110011000111011001000010010001110100010100001011000011000001010101101100000011000010000001010111010110110101000010110101010101001101000001100011110101111010110001000001100110100000101101010000001001100111101011101010011...

Third Run Output

40 49
27 98
32 48
15 96
52 88
32 97
63 93
28 71
34 80
45 6
27 80
69 8
6 39
25 100
38 10
24 69
2 51
37 47
48 47
51 59
93 89
28 45
11 47
68 15
7 30
34 4
51 25
62 37
70 6
50 84
47 40
33 98
8 71
54 94
21 99
32 92
47 62
85 71
73 94
59 53
51 57
80 27
24 92
75 49
5 22
94 76
26 15
83 37
84 64
72 65
71 66
61...

Manager to Checker

OK
You answered 100 (out of 100) questions correctly

result:

ok OK

Test #281:

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

First Run Input

Alice
111110010010001110100111110010100100111000101000010010001110110100010010011101111111000011100110001000000101010011010000010011001100110000000010011001110100010001111101110100011101100011001001010110000011000110100011110000101100100010110001010111110010010101110101000010011000100010100111111101...

First Run Output

111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111...

Second Run Input

Bob
11011101110101001010111010110101001011000101111111001011001010110101110101010110101110000011011101111111100110010000000001100010111011110011010110110011000110000001001110000111010010000111110111110000100001111111100010100111100001110110000010011100110111100100000101110111011001011011010111011011...

Second Run Output

111110110011100001111111101110111110110011100001111111101110111110110011100001111111101110111110110011100001111111101110111110110011100001111111101110111110110011100001111111101110111110110011100001111111101110111110110011100001111111101110111110110011100001111111101110111110110011100001111111101110...

Third Run Input

Clara
111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111111011110101011101001111111111111011110101011101001111...

Third Run Output

99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
99 99
...

Manager to Checker

WA
You answered 4 (out of 100) questions correctly

result:

wrong answer WA