QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#751426#8651. Table Tennis275307894a77 77ms101788kbC++141.7kb2024-11-15 18:37:512024-11-15 18:37:54

Judging History

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

  • [2024-11-15 18:37:54]
  • 评测
  • 测评结果:77
  • 用时:77ms
  • 内存:101788kb
  • [2024-11-15 18:37:51]
  • 提交

answer

#include<bits/stdc++.h>
#define Gc() getchar()
#define Me(x,y) memset(x,y,sizeof(x))
#define Mc(x,y) memcpy(x,y,sizeof(x))
#define d(x,y) ((m)*(x-1)+(y))
#define R(n) (rnd()%(n)+1)
#define Pc(x) putchar(x)
#define LB lower_bound
#define UB upper_bound
#define fi first
#define se second
#define eb emplace_back
#define all(x) x.begin(),x.end()
using namespace std;using ll=long long;using db=double;using lb=long db;using ui=unsigned;using ull=unsigned long long;using pii=pair<int,int>;
const int N=5e3+5,M=N*4+5,K=1000+5,mod=1e9+7,Mod=mod-1;const db eps=1e-9;const int INF=1e9+7;mt19937 rnd(28382);
#define Tp template<typename T>
#define Ts template<typename T,typename... Ar>
namespace Debug{
	Tp void _debug(char* f,T t){cerr<<f<<'='<<t<<endl;}
	Ts void _debug(char* f,T x,Ar... y){while(*f!=',') cerr<<*f++;cerr<<'='<<x<<",";_debug(f+1,y...);}
	#ifdef LOCAL
	#define gdb(...) _debug((char*)#__VA_ARGS__,__VA_ARGS__)
	#else 
	#define gdb(...) void()
	#endif
}using namespace Debug;
int n,m,d[N],e[N][N];
void Solve(){
	scanf("%d%d",&n,&m);
	for(int i=1;i<=n;i++) for(int j=i+1;j<=n;j++) e[i][j]=0;
	for(int i=1;i<=n;i++) d[i]=i-1;
	for(int i=n-1;i*2>n&&m;i--){
		for(int j=i+1;j<=n&&m;j++){
			if(m>=i-(n-1-i)-1) m-=i-(n-1-i)-1,d[j]--,d[n-j+1]++;
			else d[j]--,d[i+1-m-1]++,m=0;
		}
	}
	if(m){puts("No");return;}puts("Yes");
	for(int i=1;i<=n;i++) gdb(d[i]);
	for(int i=n;i;i--){
		d[i]=i-d[i]-1;
		for(int r=i-1,l;r;r=l-1){
			for(l=r;d[l]==d[r]&&l;l--);l++;
			for(int j=l;j<=r&&d[i];j++) e[j][i]=1,d[i]--,d[j]--;
		}
		gdb(d[1],d[2]);
	}
	for(int i=2;i<=n;putchar('\n'),i++) for(int j=1;j<i;j++) putchar('0'^e[j][i]^1);
}
int main(){
	int t=1;
	scanf("%d",&t);
	while(t--) Solve();
	cerr<<clock()*1.0/CLOCKS_PER_SEC<<'\n';
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 5
Accepted

Test #1:

score: 5
Accepted
time: 1ms
memory: 6108kb

input:

97
3 0
4 0
5 0
6 0
7 0
8 0
9 0
10 0
11 0
12 0
13 0
14 0
15 0
16 0
17 0
18 0
19 0
20 0
21 0
22 0
23 0
24 0
25 0
26 0
27 0
28 0
29 0
30 0
31 0
32 0
33 0
34 0
35 0
36 0
37 0
38 0
39 0
40 0
41 0
42 0
43 0
44 0
45 0
46 0
47 0
48 0
49 0
50 0
51 0
52 0
53 0
54 0
55 0
56 0
57 0
58 0
59 0
60 0
61 0
62 0
63 0...

output:

Yes
1
11
Yes
1
11
111
Yes
1
11
111
1111
Yes
1
11
111
1111
11111
Yes
1
11
111
1111
11111
111111
Yes
1
11
111
1111
11111
111111
1111111
Yes
1
11
111
1111
11111
111111
1111111
11111111
Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
11...

result:

ok good job! (97 test cases)

Test #2:

score: 5
Accepted
time: 50ms
memory: 99772kb

input:

5
4839 0
127 0
22 0
7 0
5 0

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (5 test cases)

Test #3:

score: 5
Accepted
time: 15ms
memory: 36852kb

input:

11
1191 0
1580 0
199 0
484 0
209 0
1226 0
92 0
5 0
4 0
4 0
6 0

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (11 test cases)

Test #4:

score: 5
Accepted
time: 19ms
memory: 39016kb

input:

8
953 0
1747 0
1782 0
213 0
210 0
82 0
10 0
3 0

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (8 test cases)

Test #5:

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

input:

1
6 0

output:

Yes
1
11
111
1111
11111

result:

ok good job! (1 test case)

Test #6:

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

input:

1
7 0

output:

Yes
1
11
111
1111
11111
111111

result:

ok good job! (1 test case)

Test #7:

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

input:

1
19 0

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111

result:

ok good job! (1 test case)

Test #8:

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

input:

1
20 0

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111

result:

ok good job! (1 test case)

Test #9:

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

input:

1
149 0

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #10:

score: 5
Accepted
time: 1ms
memory: 6420kb

input:

1
150 0

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #11:

score: 5
Accepted
time: 3ms
memory: 16348kb

input:

1
599 0

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #12:

score: 5
Accepted
time: 2ms
memory: 16396kb

input:

1
600 0

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #13:

score: 5
Accepted
time: 77ms
memory: 101020kb

input:

1
4999 0

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #14:

score: 5
Accepted
time: 74ms
memory: 101140kb

input:

1
5000 0

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #15:

score: 5
Accepted
time: 1ms
memory: 4076kb

input:

291
3 0
3 1
4 0
4 1
4 2
5 0
5 1
5 2
5 3
6 0
6 1
6 2
6 3
6 4
7 0
7 1
7 2
7 3
7 4
7 5
8 0
8 1
8 2
8 3
8 4
8 5
8 6
9 0
9 1
9 2
9 3
9 4
9 5
9 6
9 7
10 0
10 1
10 2
10 3
10 4
10 5
10 6
10 7
10 8
11 0
11 1
11 2
11 3
11 4
11 5
11 6
11 7
11 8
11 9
12 0
12 1
12 2
12 3
12 4
12 5
12 6
12 7
12 8
12 9
12 10
13 0
...

output:

Yes
1
11
Yes
1
01
Yes
1
11
111
Yes
1
11
101
Yes
1
01
110
Yes
1
11
111
1111
Yes
1
11
111
1101
Yes
1
11
101
1110
Yes
1
01
110
1110
Yes
1
11
111
1111
11111
Yes
1
11
111
1111
11101
Yes
1
11
111
1101
11110
Yes
1
11
101
1110
11110
Yes
1
01
110
1110
11110
Yes
1
11
111
1111
11111
111111
Yes
1
11
111
1111
11...

result:

ok good job! (291 test cases)

Test #16:

score: 5
Accepted
time: 10ms
memory: 35664kb

input:

11
123 75
1445 897
1645 84
577 115
634 455
118 80
411 132
18 8
23 8
3 1
3 1

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (11 test cases)

Test #17:

score: 5
Accepted
time: 23ms
memory: 50172kb

input:

7
1948 1328
2367 1910
216 211
374 276
36 32
20 8
39 6

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (7 test cases)

Test #18:

score: 5
Accepted
time: 15ms
memory: 64312kb

input:

6
3051 778
750 222
966 939
138 126
90 28
4 0

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (6 test cases)

Test #19:

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

input:

1
6 0

output:

Yes
1
11
111
1111
11111

result:

ok good job! (1 test case)

Test #20:

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

input:

1
7 2

output:

Yes
1
11
111
1111
11101
111110

result:

ok good job! (1 test case)

Test #21:

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

input:

1
19 7

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111101
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110

result:

ok good job! (1 test case)

Test #22:

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

input:

1
20 14

output:

Yes
1
11
111
1111
11111
111101
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110

result:

ok good job! (1 test case)

Test #23:

score: 5
Accepted
time: 1ms
memory: 8232kb

input:

1
149 6

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #24:

score: 5
Accepted
time: 1ms
memory: 8208kb

input:

1
150 44

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #25:

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

input:

1
599 503

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #26:

score: 5
Accepted
time: 3ms
memory: 16592kb

input:

1
600 218

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #27:

score: 5
Accepted
time: 58ms
memory: 100248kb

input:

1
4999 4407

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #28:

score: 5
Accepted
time: 65ms
memory: 100892kb

input:

1
4999 1436

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #29:

score: 5
Accepted
time: 58ms
memory: 100300kb

input:

1
5000 107

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #30:

score: 5
Accepted
time: 66ms
memory: 100416kb

input:

1
5000 1509

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #31:

score: 5
Accepted
time: 59ms
memory: 101128kb

input:

1
5000 2242

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #32:

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

input:

1
4 2

output:

Yes
1
01
110

result:

ok good job! (1 test case)

Test #33:

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

input:

1
5 3

output:

Yes
1
01
110
1110

result:

ok good job! (1 test case)

Test #34:

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

input:

1
6 4

output:

Yes
1
01
110
1110
11110

result:

ok good job! (1 test case)

Test #35:

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

input:

1
7 5

output:

Yes
1
01
110
1110
11110
111110

result:

ok good job! (1 test case)

Test #36:

score: 5
Accepted
time: 1ms
memory: 6024kb

input:

1
19 17

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110

result:

ok good job! (1 test case)

Test #37:

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

input:

1
20 18

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110

result:

ok good job! (1 test case)

Test #38:

score: 5
Accepted
time: 1ms
memory: 8240kb

input:

1
149 147

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #39:

score: 5
Accepted
time: 1ms
memory: 6392kb

input:

1
150 148

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #40:

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

input:

1
599 597

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #41:

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

input:

1
600 598

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #42:

score: 5
Accepted
time: 74ms
memory: 101788kb

input:

1
4999 4997

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #43:

score: 5
Accepted
time: 51ms
memory: 101416kb

input:

1
5000 4998

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #44:

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

input:

1
4 0

output:

Yes
1
11
111

result:

ok good job! (1 test case)

Test #45:

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

input:

1
5 1

output:

Yes
1
11
111
1101

result:

ok good job! (1 test case)

Test #46:

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

input:

1
6 1

output:

Yes
1
11
111
1111
11101

result:

ok good job! (1 test case)

Test #47:

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

input:

1
7 1

output:

Yes
1
11
111
1111
11111
111101

result:

ok good job! (1 test case)

Test #48:

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

input:

1
19 12

output:

Yes
1
11
111
1111
11111
111111
1111101
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110

result:

ok good job! (1 test case)

Test #49:

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

input:

1
20 13

output:

Yes
1
11
111
1111
11111
111111
1111101
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110

result:

ok good job! (1 test case)

Test #50:

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

input:

1
149 146

output:

Yes
1
11
101
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #51:

score: 5
Accepted
time: 1ms
memory: 8176kb

input:

1
150 145

output:

Yes
1
11
111
1111
11101
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #52:

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

input:

1
599 595

output:

Yes
1
11
111
1101
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #53:

score: 5
Accepted
time: 3ms
memory: 16524kb

input:

1
600 597

output:

Yes
1
11
101
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #54:

score: 5
Accepted
time: 61ms
memory: 101116kb

input:

1
4999 4992

output:

Yes
1
11
111
1111
11111
111111
1111101
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #55:

score: 5
Accepted
time: 58ms
memory: 101752kb

input:

1
4999 4994

output:

Yes
1
11
111
1111
11101
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #56:

score: 5
Accepted
time: 48ms
memory: 101780kb

input:

1
5000 4994

output:

Yes
1
11
111
1111
11111
111101
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #57:

score: 5
Accepted
time: 59ms
memory: 101140kb

input:

1
5000 4994

output:

Yes
1
11
111
1111
11111
111101
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Subtask #2:

score: 4
Accepted

Test #58:

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

input:

1
4 4

output:

No

result:

ok good job! (1 test case)

Test #59:

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

input:

1
5 10

output:

No

result:

ok good job! (1 test case)

Test #60:

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

input:

1
6 20

output:

No

result:

ok good job! (1 test case)

Test #61:

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

input:

1
7 35

output:

No

result:

ok good job! (1 test case)

Test #62:

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

input:

1
5 10

output:

No

result:

ok good job! (1 test case)

Test #63:

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

input:

1
6 19

output:

No

result:

ok good job! (1 test case)

Test #64:

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

input:

1
6 20

output:

No

result:

ok good job! (1 test case)

Test #65:

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

input:

1
7 33

output:

No

result:

ok good job! (1 test case)

Test #66:

score: 4
Accepted
time: 1ms
memory: 6036kb

input:

1
7 33

output:

No

result:

ok good job! (1 test case)

Test #67:

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

input:

1
4 3

output:

No

result:

ok good job! (1 test case)

Test #68:

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

input:

1
5 8

output:

No

result:

ok good job! (1 test case)

Test #69:

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

input:

1
6 17

output:

No

result:

ok good job! (1 test case)

Test #70:

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

input:

1
7 30

output:

No

result:

ok good job! (1 test case)

Test #71:

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

input:

2
3 0
3 1

output:

Yes
1
11
Yes
1
01

result:

ok good job! (2 test cases)

Test #72:

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

input:

2
3 0
3 1

output:

Yes
1
11
Yes
1
01

result:

ok good job! (2 test cases)

Test #73:

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

input:

1
4 2

output:

Yes
1
01
110

result:

ok good job! (1 test case)

Test #74:

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

input:

1
5 5

output:

Yes
1
01
110
0011

result:

ok good job! (1 test case)

Test #75:

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

input:

1
6 8

output:

Yes
1
01
110
0011
11100

result:

ok good job! (1 test case)

Test #76:

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

input:

1
7 14

output:

Yes
1
01
110
0011
11100
000111

result:

ok good job! (1 test case)

Test #77:

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

input:

1
6 5

output:

Yes
1
01
110
1110
11011

result:

ok good job! (1 test case)

Test #78:

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

input:

1
6 4

output:

Yes
1
01
110
1110
11110

result:

ok good job! (1 test case)

Test #79:

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

input:

1
7 7

output:

Yes
1
01
110
1110
11011
111101

result:

ok good job! (1 test case)

Test #80:

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

input:

1
7 6

output:

Yes
1
01
110
1110
11110
111011

result:

ok good job! (1 test case)

Test #81:

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

input:

1
7 8

output:

Yes
1
01
110
1011
11101
111101

result:

ok good job! (1 test case)

Test #82:

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

input:

1
6 7

output:

Yes
1
01
110
1011
11001

result:

ok good job! (1 test case)

Test #83:

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

input:

1
6 6

output:

Yes
1
01
110
1011
11101

result:

ok good job! (1 test case)

Test #84:

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

input:

1
7 11

output:

Yes
1
01
110
0011
11100
111100

result:

ok good job! (1 test case)

Test #85:

score: 4
Accepted
time: 1ms
memory: 6032kb

input:

1
7 11

output:

Yes
1
01
110
0011
11100
111100

result:

ok good job! (1 test case)

Test #86:

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

input:

1
7 13

output:

Yes
1
01
110
0011
11100
100111

result:

ok good job! (1 test case)

Test #87:

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

input:

1
6 6

output:

Yes
1
01
110
1011
11101

result:

ok good job! (1 test case)

Test #88:

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

input:

1
7 9

output:

Yes
1
01
110
1011
11101
111001

result:

ok good job! (1 test case)

Test #89:

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

input:

1
4 3

output:

No

result:

ok good job! (1 test case)

Test #90:

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

input:

1
5 10

output:

No

result:

ok good job! (1 test case)

Test #91:

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

input:

1
6 13

output:

No

result:

ok good job! (1 test case)

Test #92:

score: 4
Accepted
time: 1ms
memory: 6024kb

input:

1
7 23

output:

No

result:

ok good job! (1 test case)

Test #93:

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

input:

1
6 5

output:

Yes
1
01
110
1110
11011

result:

ok good job! (1 test case)

Test #94:

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

input:

1
6 2

output:

Yes
1
11
111
1101
11110

result:

ok good job! (1 test case)

Test #95:

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

input:

1
7 7

output:

Yes
1
01
110
1110
11011
111101

result:

ok good job! (1 test case)

Test #96:

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

input:

1
7 6

output:

Yes
1
01
110
1110
11110
111011

result:

ok good job! (1 test case)

Test #97:

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

input:

1
7 8

output:

Yes
1
01
110
1011
11101
111101

result:

ok good job! (1 test case)

Test #98:

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

input:

1
6 5

output:

Yes
1
01
110
1110
11011

result:

ok good job! (1 test case)

Test #99:

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

input:

1
6 4

output:

Yes
1
01
110
1110
11110

result:

ok good job! (1 test case)

Test #100:

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

input:

1
7 7

output:

Yes
1
01
110
1110
11011
111101

result:

ok good job! (1 test case)

Test #101:

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

input:

1
7 6

output:

Yes
1
01
110
1110
11110
111011

result:

ok good job! (1 test case)

Test #102:

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

input:

1
7 8

output:

Yes
1
01
110
1011
11101
111101

result:

ok good job! (1 test case)

Test #103:

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

input:

1
6 1

output:

Yes
1
11
111
1111
11101

result:

ok good job! (1 test case)

Test #104:

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

input:

1
6 1

output:

Yes
1
11
111
1111
11101

result:

ok good job! (1 test case)

Test #105:

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

input:

1
7 3

output:

Yes
1
11
111
1101
11110
111110

result:

ok good job! (1 test case)

Test #106:

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

input:

1
7 3

output:

Yes
1
11
111
1101
11110
111110

result:

ok good job! (1 test case)

Test #107:

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

input:

1
7 3

output:

Yes
1
11
111
1101
11110
111110

result:

ok good job! (1 test case)

Test #108:

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

input:

1
5 2

output:

Yes
1
11
101
1110

result:

ok good job! (1 test case)

Test #109:

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

input:

1
6 5

output:

Yes
1
01
110
1110
11011

result:

ok good job! (1 test case)

Test #110:

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

input:

2
4 1
3 0

output:

Yes
1
11
101
Yes
1
11

result:

ok good job! (2 test cases)

Test #111:

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

input:

1
6 1

output:

Yes
1
11
111
1111
11101

result:

ok good job! (1 test case)

Test #112:

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

input:

2
3 0
3 1

output:

Yes
1
11
Yes
1
01

result:

ok good job! (2 test cases)

Test #113:

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

input:

1
6 1

output:

Yes
1
11
111
1111
11101

result:

ok good job! (1 test case)

Test #114:

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

input:

1
6 4

output:

Yes
1
01
110
1110
11110

result:

ok good job! (1 test case)

Test #115:

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

input:

1
7 14

output:

Yes
1
01
110
0011
11100
000111

result:

ok good job! (1 test case)

Test #116:

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

input:

1
7 8

output:

Yes
1
01
110
1011
11101
111101

result:

ok good job! (1 test case)

Test #117:

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

input:

1
7 10

output:

Yes
1
01
110
1011
11001
111100

result:

ok good job! (1 test case)

Subtask #3:

score: 23
Accepted

Dependency #2:

100%
Accepted

Test #118:

score: 23
Accepted
time: 0ms
memory: 4104kb

input:

1
19 969

output:

No

result:

ok good job! (1 test case)

Test #119:

score: 23
Accepted
time: 0ms
memory: 4060kb

input:

1
20 1140

output:

No

result:

ok good job! (1 test case)

Test #120:

score: 23
Accepted
time: 0ms
memory: 4040kb

input:

1
19 968

output:

No

result:

ok good job! (1 test case)

Test #121:

score: 23
Accepted
time: 0ms
memory: 4056kb

input:

1
19 969

output:

No

result:

ok good job! (1 test case)

Test #122:

score: 23
Accepted
time: 1ms
memory: 6004kb

input:

1
20 1138

output:

No

result:

ok good job! (1 test case)

Test #123:

score: 23
Accepted
time: 0ms
memory: 4036kb

input:

1
20 1138

output:

No

result:

ok good job! (1 test case)

Test #124:

score: 23
Accepted
time: 0ms
memory: 4036kb

input:

1
20 1140

output:

No

result:

ok good job! (1 test case)

Test #125:

score: 23
Accepted
time: 0ms
memory: 4060kb

input:

1
19 846

output:

No

result:

ok good job! (1 test case)

Test #126:

score: 23
Accepted
time: 0ms
memory: 4108kb

input:

1
20 1003

output:

No

result:

ok good job! (1 test case)

Test #127:

score: 23
Accepted
time: 0ms
memory: 3968kb

input:

5
3 0
3 1
4 0
4 1
4 2

output:

Yes
1
11
Yes
1
01
Yes
1
11
111
Yes
1
11
101
Yes
1
01
110

result:

ok good job! (5 test cases)

Test #128:

score: 23
Accepted
time: 1ms
memory: 6024kb

input:

5
3 0
3 1
4 0
4 1
4 2

output:

Yes
1
11
Yes
1
01
Yes
1
11
111
Yes
1
11
101
Yes
1
01
110

result:

ok good job! (5 test cases)

Test #129:

score: 23
Accepted
time: 0ms
memory: 4056kb

input:

1
19 285

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111

result:

ok good job! (1 test case)

Test #130:

score: 23
Accepted
time: 0ms
memory: 4044kb

input:

1
20 330

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000

result:

ok good job! (1 test case)

Test #131:

score: 23
Accepted
time: 0ms
memory: 6100kb

input:

1
19 274

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
1000000011111111
11111111100000001
111111111000000001

result:

ok good job! (1 test case)

Test #132:

score: 23
Accepted
time: 0ms
memory: 4052kb

input:

1
19 271

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
1100000011111110
11111111100000010
111111111000000011

result:

ok good job! (1 test case)

Test #133:

score: 23
Accepted
time: 0ms
memory: 4084kb

input:

1
20 289

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
1111110011100000
11111111100100000
111111111100100000
1111111111000110000

result:

ok good job! (1 test case)

Test #134:

score: 23
Accepted
time: 0ms
memory: 4032kb

input:

1
20 328

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
100000000111111111
1111111111000000001

result:

ok good job! (1 test case)

Test #135:

score: 23
Accepted
time: 1ms
memory: 6108kb

input:

1
20 313

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
111111111100000000
1111111110110000000

result:

ok good job! (1 test case)

Test #136:

score: 23
Accepted
time: 0ms
memory: 4056kb

input:

1
19 114

output:

Yes
1
01
110
0011
11100
000111
1111000
11001110
111110010
1111110010
11111110010
111111110010
1111111100011
11111111110001
111111111110001
1111111111110001
11111111111110001
111111111111110001

result:

ok good job! (1 test case)

Test #137:

score: 23
Accepted
time: 0ms
memory: 4056kb

input:

1
19 96

output:

Yes
1
01
110
0011
11100
000111
1111000
11111000
111101100
1111110100
11111110100
111111110100
1111111110100
11111111110100
111111111110100
1111111111110100
11111111111110100
111111111111110100

result:

ok good job! (1 test case)

Test #138:

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

input:

1
20 152

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
1111011000
11111101000
111111101000
1111111101000
11111111101000
111111111101000
1111111111101000
11111111111101000
111111111111001100
1111111111111100100

result:

ok good job! (1 test case)

Test #139:

score: 23
Accepted
time: 0ms
memory: 4056kb

input:

1
20 250

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
11111001110000
111111110010000
1111111110010000
11111111110010000
111111111110010000
1111111111110010000

result:

ok good job! (1 test case)

Test #140:

score: 23
Accepted
time: 0ms
memory: 4060kb

input:

1
20 28

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111011
11111111101
111111111101
1111111111101
11111111111101
111111111111101
1111111111111101
11111111111111101
111111111111111101
1111111111111111101

result:

ok good job! (1 test case)

Test #141:

score: 23
Accepted
time: 0ms
memory: 4036kb

input:

1
19 231

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
11111001110000
111111100011000
1111111110001000
11111111110001000
111111111110001000

result:

ok good job! (1 test case)

Test #142:

score: 23
Accepted
time: 0ms
memory: 3908kb

input:

1
19 270

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
1100000011111110
11111111100000010
111111111100000010

result:

ok good job! (1 test case)

Test #143:

score: 23
Accepted
time: 0ms
memory: 3920kb

input:

1
20 258

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
11110001111000
111111110001000
1111111110001000
11111111110001000
111111111100001100
1111111111110000100

result:

ok good job! (1 test case)

Test #144:

score: 23
Accepted
time: 0ms
memory: 4052kb

input:

1
20 263

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
11100001111100
111111110000100
1111111110000100
11111111110000100
111111111110000100
1111111111100000110

result:

ok good job! (1 test case)

Test #145:

score: 23
Accepted
time: 0ms
memory: 4036kb

input:

1
20 286

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
1111111011000000
11111111101000000
111111111001100000
1111111111100100000

result:

ok good job! (1 test case)

Test #146:

score: 23
Accepted
time: 1ms
memory: 6064kb

input:

1
19 241

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
11100001111100
111111100000110
1111111110000010
11111111110000010
111111111110000010

result:

ok good job! (1 test case)

Test #147:

score: 23
Accepted
time: 0ms
memory: 4048kb

input:

1
20 286

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
1111111011000000
11111111101000000
111111111001100000
1111111111100100000

result:

ok good job! (1 test case)

Test #148:

score: 23
Accepted
time: 0ms
memory: 4032kb

input:

1
19 294

output:

No

result:

ok good job! (1 test case)

Test #149:

score: 23
Accepted
time: 0ms
memory: 6048kb

input:

1
19 289

output:

No

result:

ok good job! (1 test case)

Test #150:

score: 23
Accepted
time: 0ms
memory: 4036kb

input:

1
20 338

output:

No

result:

ok good job! (1 test case)

Test #151:

score: 23
Accepted
time: 0ms
memory: 4048kb

input:

1
20 336

output:

No

result:

ok good job! (1 test case)

Test #152:

score: 23
Accepted
time: 1ms
memory: 6064kb

input:

1
20 335

output:

No

result:

ok good job! (1 test case)

Test #153:

score: 23
Accepted
time: 0ms
memory: 4012kb

input:

1
19 19

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111011
111111111111111101

result:

ok good job! (1 test case)

Test #154:

score: 23
Accepted
time: 0ms
memory: 4040kb

input:

1
19 1

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111101

result:

ok good job! (1 test case)

Test #155:

score: 23
Accepted
time: 0ms
memory: 4040kb

input:

1
20 2

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111101
1111111111111111110

result:

ok good job! (1 test case)

Test #156:

score: 23
Accepted
time: 0ms
memory: 3980kb

input:

1
20 40

output:

Yes
1
01
110
1011
11101
111101
1111101
11111101
111111101
1111111101
11111111101
111111111101
1111111111101
11111111111001
111111111111100
1111111111111100
11111111111111100
111111111111111100
1111111111111111100

result:

ok good job! (1 test case)

Test #157:

score: 23
Accepted
time: 1ms
memory: 6024kb

input:

1
20 18

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110

result:

ok good job! (1 test case)

Test #158:

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

input:

1
19 114

output:

Yes
1
01
110
0011
11100
000111
1111000
11001110
111110010
1111110010
11111110010
111111110010
1111111100011
11111111110001
111111111110001
1111111111110001
11111111111110001
111111111111110001

result:

ok good job! (1 test case)

Test #159:

score: 23
Accepted
time: 0ms
memory: 4056kb

input:

1
19 96

output:

Yes
1
01
110
0011
11100
000111
1111000
11111000
111101100
1111110100
11111110100
111111110100
1111111110100
11111111110100
111111111110100
1111111111110100
11111111111110100
111111111111110100

result:

ok good job! (1 test case)

Test #160:

score: 23
Accepted
time: 0ms
memory: 4052kb

input:

1
20 152

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
1111011000
11111101000
111111101000
1111111101000
11111111101000
111111111101000
1111111111101000
11111111111101000
111111111111001100
1111111111111100100

result:

ok good job! (1 test case)

Test #161:

score: 23
Accepted
time: 0ms
memory: 4040kb

input:

1
20 250

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
11111001110000
111111110010000
1111111110010000
11111111110010000
111111111110010000
1111111111110010000

result:

ok good job! (1 test case)

Test #162:

score: 23
Accepted
time: 0ms
memory: 4056kb

input:

1
20 28

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111011
11111111101
111111111101
1111111111101
11111111111101
111111111111101
1111111111111101
11111111111111101
111111111111111101
1111111111111111101

result:

ok good job! (1 test case)

Test #163:

score: 23
Accepted
time: 0ms
memory: 4032kb

input:

1
19 68

output:

Yes
1
01
110
0011
11100
110110
1111010
11111010
111111010
1111111010
11111110011
111111111001
1111111111001
11111111111001
111111111111001
1111111111111001
11111111111111001
111111111111111001

result:

ok good job! (1 test case)

Test #164:

score: 23
Accepted
time: 0ms
memory: 4052kb

input:

1
19 49

output:

Yes
1
01
110
0011
11100
111100
1111100
11111100
111111100
1111111100
11111111100
111111111100
1111111111100
11111111111100
111111111111100
1111111111111100
11111111111110110
111111111111111010

result:

ok good job! (1 test case)

Test #165:

score: 23
Accepted
time: 0ms
memory: 4056kb

input:

1
20 21

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111011
111111111111111101
1111111111111111101

result:

ok good job! (1 test case)

Test #166:

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

input:

1
20 34

output:

Yes
1
01
110
1011
11101
111101
1111101
11111101
111111101
1111111101
11111111101
111111111101
1111111111101
11111111111101
111111111111101
1111111111111101
11111111111111101
111111111111111101
1111111111111111101

result:

ok good job! (1 test case)

Test #167:

score: 23
Accepted
time: 0ms
memory: 4104kb

input:

1
20 34

output:

Yes
1
01
110
1011
11101
111101
1111101
11111101
111111101
1111111101
11111111101
111111111101
1111111111101
11111111111101
111111111111101
1111111111111101
11111111111111101
111111111111111101
1111111111111111101

result:

ok good job! (1 test case)

Test #168:

score: 23
Accepted
time: 0ms
memory: 4028kb

input:

2
13 8
7 3

output:

Yes
1
11
111
1111
11101
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
Yes
1
11
111
1101
11110
111110

result:

ok good job! (2 test cases)

Test #169:

score: 23
Accepted
time: 0ms
memory: 4012kb

input:

3
10 3
3 1
7 0

output:

Yes
1
11
111
1111
11111
111111
1111101
11111110
111111110
Yes
1
01
Yes
1
11
111
1111
11111
111111

result:

ok good job! (3 test cases)

Test #170:

score: 23
Accepted
time: 0ms
memory: 3988kb

input:

4
7 6
6 3
4 2
3 0

output:

Yes
1
01
110
1110
11110
111011
Yes
1
11
101
1110
11110
Yes
1
01
110
Yes
1
11

result:

ok good job! (4 test cases)

Test #171:

score: 23
Accepted
time: 0ms
memory: 4008kb

input:

2
17 120
3 0

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
1111011000
11111101000
111111101000
1111111101000
11111111001100
111111111100100
1111111111100100
Yes
1
11

result:

ok good job! (2 test cases)

Test #172:

score: 23
Accepted
time: 0ms
memory: 3984kb

input:

4
6 1
6 7
4 0
4 0

output:

Yes
1
11
111
1111
11101
Yes
1
01
110
1011
11001
Yes
1
11
111
Yes
1
11
111

result:

ok good job! (4 test cases)

Test #173:

score: 23
Accepted
time: 0ms
memory: 4056kb

input:

1
19 181

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
111111100000
1111110110000
11111111010000
111111111010000
1111111111010000
11111111111010000
111111111111010000

result:

ok good job! (1 test case)

Test #174:

score: 23
Accepted
time: 1ms
memory: 6112kb

input:

1
19 17

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110

result:

ok good job! (1 test case)

Test #175:

score: 23
Accepted
time: 0ms
memory: 4036kb

input:

1
20 170

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
1100011110
11111100010
111111100010
1111111100010
11111111100010
111111111100010
1111111111100010
11111111111100010
111111111111100010
1111111111111100010

result:

ok good job! (1 test case)

Test #176:

score: 23
Accepted
time: 0ms
memory: 4040kb

input:

1
20 30

output:

Yes
1
01
110
1110
11110
111110
1111110
11111011
111111101
1111111101
11111111101
111111111101
1111111111101
11111111111101
111111111111101
1111111111111101
11111111111111101
111111111111111101
1111111111111111101

result:

ok good job! (1 test case)

Test #177:

score: 23
Accepted
time: 1ms
memory: 6012kb

input:

1
20 183

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
1000011111
11111100001
111111100001
1111111100001
11111111100001
111111111100001
1111111111100001
11111111111000001
111111111111100000
1111111111111100000

result:

ok good job! (1 test case)

Subtask #4:

score: 30
Accepted

Dependency #3:

100%
Accepted

Test #178:

score: 30
Accepted
time: 1ms
memory: 6444kb

input:

1
149 540274

output:

No

result:

ok good job! (1 test case)

Test #179:

score: 30
Accepted
time: 1ms
memory: 8164kb

input:

1
150 551300

output:

No

result:

ok good job! (1 test case)

Test #180:

score: 30
Accepted
time: 1ms
memory: 6300kb

input:

1
149 540272

output:

No

result:

ok good job! (1 test case)

Test #181:

score: 30
Accepted
time: 1ms
memory: 6348kb

input:

1
149 540272

output:

No

result:

ok good job! (1 test case)

Test #182:

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

input:

1
150 551299

output:

No

result:

ok good job! (1 test case)

Test #183:

score: 30
Accepted
time: 1ms
memory: 6292kb

input:

1
150 551299

output:

No

result:

ok good job! (1 test case)

Test #184:

score: 30
Accepted
time: 1ms
memory: 6368kb

input:

1
150 551299

output:

No

result:

ok good job! (1 test case)

Test #185:

score: 30
Accepted
time: 1ms
memory: 6280kb

input:

1
149 468391

output:

No

result:

ok good job! (1 test case)

Test #186:

score: 30
Accepted
time: 1ms
memory: 6340kb

input:

1
150 482173

output:

No

result:

ok good job! (1 test case)

Test #187:

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

input:

29
3 0
3 1
4 0
4 1
4 2
4 3
4 4
5 0
5 1
5 2
5 3
5 4
5 5
5 6
5 7
5 8
5 9
5 10
6 0
6 1
6 2
6 3
6 4
6 5
6 6
6 7
6 8
6 9
6 10

output:

Yes
1
11
Yes
1
01
Yes
1
11
111
Yes
1
11
101
Yes
1
01
110
No
No
Yes
1
11
111
1111
Yes
1
11
111
1101
Yes
1
11
101
1110
Yes
1
01
110
1110
Yes
1
01
110
1011
Yes
1
01
110
0011
No
No
No
No
No
Yes
1
11
111
1111
11111
Yes
1
11
111
1111
11101
Yes
1
11
111
1101
11110
Yes
1
11
101
1110
11110
Yes
1
01
110
1110
...

result:

ok good job! (29 test cases)

Test #188:

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

input:

26
3 0
3 1
4 0
4 1
4 2
5 0
5 1
5 2
5 3
5 4
5 5
6 0
6 1
6 2
6 3
6 4
6 5
6 6
6 7
6 8
7 0
7 1
7 2
7 3
7 4
7 5

output:

Yes
1
11
Yes
1
01
Yes
1
11
111
Yes
1
11
101
Yes
1
01
110
Yes
1
11
111
1111
Yes
1
11
111
1101
Yes
1
11
101
1110
Yes
1
01
110
1110
Yes
1
01
110
1011
Yes
1
01
110
0011
Yes
1
11
111
1111
11111
Yes
1
11
111
1111
11101
Yes
1
11
111
1101
11110
Yes
1
11
101
1110
11110
Yes
1
01
110
1110
11110
Yes
1
01
110
11...

result:

ok good job! (26 test cases)

Test #189:

score: 30
Accepted
time: 1ms
memory: 6412kb

input:

1
149 137825

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #190:

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

input:

1
150 140600

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #191:

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

input:

1
149 137691

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #192:

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

input:

1
149 137531

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #193:

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

input:

1
150 140481

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #194:

score: 30
Accepted
time: 1ms
memory: 8184kb

input:

1
150 140455

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #195:

score: 30
Accepted
time: 1ms
memory: 6452kb

input:

1
150 140554

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #196:

score: 30
Accepted
time: 1ms
memory: 6500kb

input:

1
149 77527

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #197:

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

input:

1
149 123264

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #198:

score: 30
Accepted
time: 1ms
memory: 8180kb

input:

1
150 123655

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #199:

score: 30
Accepted
time: 1ms
memory: 6488kb

input:

1
150 128371

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #200:

score: 30
Accepted
time: 1ms
memory: 6196kb

input:

1
150 124526

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #201:

score: 30
Accepted
time: 1ms
memory: 6340kb

input:

1
149 132911

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #202:

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

input:

1
149 129426

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #203:

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

input:

1
150 108351

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #204:

score: 30
Accepted
time: 1ms
memory: 8124kb

input:

1
150 132640

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #205:

score: 30
Accepted
time: 1ms
memory: 8040kb

input:

1
150 111366

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #206:

score: 30
Accepted
time: 1ms
memory: 6304kb

input:

1
149 135051

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #207:

score: 30
Accepted
time: 1ms
memory: 8252kb

input:

1
150 137826

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #208:

score: 30
Accepted
time: 1ms
memory: 8132kb

input:

1
149 137827

output:

No

result:

ok good job! (1 test case)

Test #209:

score: 30
Accepted
time: 1ms
memory: 8228kb

input:

1
149 137827

output:

No

result:

ok good job! (1 test case)

Test #210:

score: 30
Accepted
time: 1ms
memory: 8096kb

input:

1
150 140609

output:

No

result:

ok good job! (1 test case)

Test #211:

score: 30
Accepted
time: 1ms
memory: 6328kb

input:

1
150 140608

output:

No

result:

ok good job! (1 test case)

Test #212:

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

input:

1
150 140607

output:

No

result:

ok good job! (1 test case)

Test #213:

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

input:

1
149 379

output:

Yes
1
01
110
1011
11101
111101
1111101
11111101
111111101
1111111101
11111111101
111111111101
1111111111101
11111111111101
111111111111101
1111111111111101
11111111111111101
111111111111111101
1111111111111111101
11111111111111111101
111111111111111111101
1111111111111111111101
111111111111111111111...

result:

ok good job! (1 test case)

Test #214:

score: 30
Accepted
time: 1ms
memory: 6516kb

input:

1
149 298

output:

Yes
1
01
110
1011
11101
111101
1111101
11111101
111111101
1111111101
11111111101
111111111101
1111111111101
11111111111101
111111111111101
1111111111111101
11111111111111101
111111111111111101
1111111111111111101
11111111111111111101
111111111111111111101
1111111111111111111101
111111111111111111111...

result:

ok good job! (1 test case)

Test #215:

score: 30
Accepted
time: 1ms
memory: 8116kb

input:

1
150 75

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #216:

score: 30
Accepted
time: 1ms
memory: 8100kb

input:

1
150 129

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111101
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #217:

score: 30
Accepted
time: 1ms
memory: 6424kb

input:

1
150 44

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #218:

score: 30
Accepted
time: 1ms
memory: 8192kb

input:

1
149 58042

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #219:

score: 30
Accepted
time: 1ms
memory: 8164kb

input:

1
149 22946

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #220:

score: 30
Accepted
time: 1ms
memory: 8240kb

input:

1
150 21975

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #221:

score: 30
Accepted
time: 1ms
memory: 8252kb

input:

1
150 12279

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #222:

score: 30
Accepted
time: 1ms
memory: 6492kb

input:

1
150 21044

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #223:

score: 30
Accepted
time: 1ms
memory: 8176kb

input:

1
149 3859

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
10000001111111
111111110000001
1111111110000001
11111111110000001
111111111110000001
1111111111110000001
11111111111110000001
111111111111110000001
1111111111111110000001
111111111111111100000...

result:

ok good job! (1 test case)

Test #224:

score: 30
Accepted
time: 1ms
memory: 8220kb

input:

1
149 2822

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
100000111111
1111111000001
11111111000001
111111111000001
1111111111000001
11111111111000001
111111111111000001
1111111111111000001
11111111111111000001
111111111111111000001
1111111111111111000001
111111111111111110000...

result:

ok good job! (1 test case)

Test #225:

score: 30
Accepted
time: 1ms
memory: 6232kb

input:

1
150 11132

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #226:

score: 30
Accepted
time: 1ms
memory: 8188kb

input:

1
150 2249

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
111111100000
1111111100000
11111111100000
111111111100000
1111111111100000
11111111111100000
111111111111100000
1111111111111100000
11111111111111100000
111111111111111100000
1111111111111111100000
111111111111111111000...

result:

ok good job! (1 test case)

Test #227:

score: 30
Accepted
time: 1ms
memory: 6260kb

input:

1
150 29569

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #228:

score: 30
Accepted
time: 1ms
memory: 6468kb

input:

5
96 35791
6 0
32 367
13 49
3 1

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (5 test cases)

Test #229:

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

input:

5
37 1827
21 52
40 1995
44 1032
7 5

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (5 test cases)

Test #230:

score: 30
Accepted
time: 1ms
memory: 6136kb

input:

5
74 4427
43 920
25 422
5 5
3 0

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (5 test cases)

Test #231:

score: 30
Accepted
time: 1ms
memory: 6372kb

input:

2
125 56690
24 84

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (2 test cases)

Test #232:

score: 30
Accepted
time: 1ms
memory: 6324kb

input:

5
80 19621
46 3138
10 35
8 5
5 1

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (5 test cases)

Test #233:

score: 30
Accepted
time: 1ms
memory: 8128kb

input:

1
149 205917

output:

No

result:

ok good job! (1 test case)

Test #234:

score: 30
Accepted
time: 1ms
memory: 8424kb

input:

1
149 91736

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #235:

score: 30
Accepted
time: 1ms
memory: 6316kb

input:

1
150 8430

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
1111000000011111111000
111111111111000000010...

result:

ok good job! (1 test case)

Test #236:

score: 30
Accepted
time: 1ms
memory: 6284kb

input:

1
150 86431

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #237:

score: 30
Accepted
time: 1ms
memory: 6280kb

input:

1
150 139998

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Subtask #5:

score: 15
Accepted

Dependency #4:

100%
Accepted

Test #238:

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

input:

1
599 35641099

output:

No

result:

ok good job! (1 test case)

Test #239:

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

input:

1
600 35820200

output:

No

result:

ok good job! (1 test case)

Test #240:

score: 15
Accepted
time: 2ms
memory: 16240kb

input:

1
599 35641097

output:

No

result:

ok good job! (1 test case)

Test #241:

score: 15
Accepted
time: 2ms
memory: 16552kb

input:

1
599 35641098

output:

No

result:

ok good job! (1 test case)

Test #242:

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

input:

1
600 35820198

output:

No

result:

ok good job! (1 test case)

Test #243:

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

input:

1
600 35820199

output:

No

result:

ok good job! (1 test case)

Test #244:

score: 15
Accepted
time: 2ms
memory: 16560kb

input:

1
600 35820200

output:

No

result:

ok good job! (1 test case)

Test #245:

score: 15
Accepted
time: 2ms
memory: 14752kb

input:

1
599 31149736

output:

No

result:

ok good job! (1 test case)

Test #246:

score: 15
Accepted
time: 2ms
memory: 16560kb

input:

1
600 31381017

output:

No

result:

ok good job! (1 test case)

Test #247:

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

input:

92
3 0
3 1
4 0
4 1
4 2
4 3
4 4
5 0
5 1
5 2
5 3
5 4
5 5
5 6
5 7
5 8
5 9
5 10
6 0
6 1
6 2
6 3
6 4
6 5
6 6
6 7
6 8
6 9
6 10
6 11
6 12
6 13
6 14
6 15
6 16
6 17
6 18
6 19
6 20
7 0
7 1
7 2
7 3
7 4
7 5
7 6
7 7
7 8
7 9
7 10
7 11
7 12
7 13
7 14
7 15
7 16
7 17
7 18
7 19
7 20
7 21
7 22
7 23
7 24
7 25
7 26
7 27...

output:

Yes
1
11
Yes
1
01
Yes
1
11
111
Yes
1
11
101
Yes
1
01
110
No
No
Yes
1
11
111
1111
Yes
1
11
111
1101
Yes
1
11
101
1110
Yes
1
01
110
1110
Yes
1
01
110
1011
Yes
1
01
110
0011
No
No
No
No
No
Yes
1
11
111
1111
11111
Yes
1
11
111
1111
11101
Yes
1
11
111
1101
11110
Yes
1
11
101
1110
11110
Yes
1
01
110
1110
...

result:

ok good job! (92 test cases)

Test #248:

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

input:

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

output:

Yes
1
11
Yes
1
01
Yes
1
11
111
Yes
1
11
101
Yes
1
01
110
Yes
1
11
111
1111
Yes
1
11
111
1101
Yes
1
11
101
1110
Yes
1
01
110
1110
Yes
1
01
110
1011
Yes
1
01
110
0011
Yes
1
11
111
1111
11111
Yes
1
11
111
1111
11101
Yes
1
11
111
1101
11110
Yes
1
11
101
1110
11110
Yes
1
01
110
1110
11110
Yes
1
01
110
11...

result:

ok good job! (81 test cases)

Test #249:

score: 15
Accepted
time: 2ms
memory: 14600kb

input:

1
599 8955050

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #250:

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

input:

1
600 8999900

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #251:

score: 15
Accepted
time: 3ms
memory: 16276kb

input:

1
599 8954812

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #252:

score: 15
Accepted
time: 3ms
memory: 16736kb

input:

1
599 8954621

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #253:

score: 15
Accepted
time: 2ms
memory: 14820kb

input:

1
600 8998543

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #254:

score: 15
Accepted
time: 2ms
memory: 16384kb

input:

1
600 8999826

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #255:

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

input:

1
600 8999510

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #256:

score: 15
Accepted
time: 2ms
memory: 16324kb

input:

1
599 8345787

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #257:

score: 15
Accepted
time: 2ms
memory: 16488kb

input:

1
599 8722378

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #258:

score: 15
Accepted
time: 2ms
memory: 16396kb

input:

1
600 8782693

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #259:

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

input:

1
600 8889455

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #260:

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

input:

1
600 8643126

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #261:

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

input:

1
599 7287746

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #262:

score: 15
Accepted
time: 3ms
memory: 16672kb

input:

1
599 8113340

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #263:

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

input:

1
600 6980363

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #264:

score: 15
Accepted
time: 3ms
memory: 16464kb

input:

1
600 6932760

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #265:

score: 15
Accepted
time: 2ms
memory: 16460kb

input:

1
600 8996064

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #266:

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

input:

1
599 8910201

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #267:

score: 15
Accepted
time: 3ms
memory: 16656kb

input:

1
600 8955051

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #268:

score: 15
Accepted
time: 2ms
memory: 16668kb

input:

1
599 8955056

output:

No

result:

ok good job! (1 test case)

Test #269:

score: 15
Accepted
time: 2ms
memory: 16348kb

input:

1
599 8955056

output:

No

result:

ok good job! (1 test case)

Test #270:

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

input:

1
600 8999908

output:

No

result:

ok good job! (1 test case)

Test #271:

score: 15
Accepted
time: 2ms
memory: 16340kb

input:

1
600 8999908

output:

No

result:

ok good job! (1 test case)

Test #272:

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

input:

1
600 8999904

output:

No

result:

ok good job! (1 test case)

Test #273:

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

input:

1
599 992

output:

Yes
1
01
110
1110
11110
111110
1111110
11111110
111111110
1111111110
11111111110
111111111110
1111111111110
11111111111110
111111111111110
1111111111111110
11111111111111110
111111111111111110
1111111111111111110
11111111111111111110
111111111111111111110
1111111111111111111110
111111111111111111111...

result:

ok good job! (1 test case)

Test #274:

score: 15
Accepted
time: 2ms
memory: 16604kb

input:

1
599 337

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #275:

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

input:

1
600 1774

output:

Yes
1
01
110
1011
11101
111101
1111101
11111101
111111101
1111111101
11111111101
111111111101
1111111111101
11111111111101
111111111111101
1111111111111101
11111111111111101
111111111111111101
1111111111111111101
11111111111111111001
111111111111111111100
1111111111111111111100
111111111111111111111...

result:

ok good job! (1 test case)

Test #276:

score: 15
Accepted
time: 2ms
memory: 16316kb

input:

1
600 275

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #277:

score: 15
Accepted
time: 2ms
memory: 16728kb

input:

1
600 102

output:

Yes
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111
111111111111111111
1111111111111111111
11111111111111111111
111111111111111111111
1111111111111111111111
111111111111111111111...

result:

ok good job! (1 test case)

Test #278:

score: 15
Accepted
time: 2ms
memory: 14808kb

input:

1
599 355600

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #279:

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

input:

1
599 475943

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #280:

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

input:

1
600 120574

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #281:

score: 15
Accepted
time: 2ms
memory: 16492kb

input:

1
600 167075

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #282:

score: 15
Accepted
time: 2ms
memory: 16300kb

input:

1
600 302502

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #283:

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

input:

1
599 2048448

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #284:

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

input:

1
599 960012

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #285:

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

input:

1
600 141777

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #286:

score: 15
Accepted
time: 2ms
memory: 16632kb

input:

1
600 1243588

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #287:

score: 15
Accepted
time: 3ms
memory: 16680kb

input:

1
600 487443

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #288:

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

input:

6
74 16212
201 158009
162 66397
47 1639
112 49261
4 2

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (6 test cases)

Test #289:

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

input:

5
529 4771609
21 288
42 2532
5 0
3 1

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (5 test cases)

Test #290:

score: 15
Accepted
time: 2ms
memory: 14464kb

input:

9
481 2328203
26 209
27 95
12 7
13 41
23 129
9 25
6 2
3 0

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (9 test cases)

Test #291:

score: 15
Accepted
time: 2ms
memory: 14500kb

input:

5
552 4970748
9 15
16 122
14 105
8 12

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (5 test cases)

Test #292:

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

input:

7
222 86559
159 151626
166 15153
25 610
4 2
17 184
7 7

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (7 test cases)

Test #293:

score: 15
Accepted
time: 2ms
memory: 14916kb

input:

1
599 3698652

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #294:

score: 15
Accepted
time: 3ms
memory: 16400kb

input:

1
599 2692237

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #295:

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

input:

1
600 2516897

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #296:

score: 15
Accepted
time: 3ms
memory: 14744kb

input:

1
600 2315976

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #297:

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

input:

1
600 969595

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Subtask #6:

score: 0
Runtime Error

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Dependency #4:

100%
Accepted

Dependency #5:

100%
Accepted

Test #298:

score: 23
Accepted
time: 1ms
memory: 4112kb

input:

379
3 0
3 1
4 0
4 1
4 2
5 0
5 1
5 2
5 3
5 4
6 0
6 1
6 2
6 3
6 4
6 5
6 6
7 0
7 1
7 2
7 3
7 4
7 5
7 6
7 7
7 8
7 9
8 0
8 1
8 2
8 3
8 4
8 5
8 6
8 7
8 8
8 9
8 10
8 11
8 12
9 0
9 1
9 2
9 3
9 4
9 5
9 6
9 7
9 8
9 9
9 10
9 11
9 12
9 13
9 14
9 15
9 16
10 0
10 1
10 2
10 3
10 4
10 5
10 6
10 7
10 8
10 9
10 10
10...

output:

Yes
1
11
Yes
1
01
Yes
1
11
111
Yes
1
11
101
Yes
1
01
110
Yes
1
11
111
1111
Yes
1
11
111
1101
Yes
1
11
101
1110
Yes
1
01
110
1110
Yes
1
01
110
1011
Yes
1
11
111
1111
11111
Yes
1
11
111
1111
11101
Yes
1
11
111
1101
11110
Yes
1
11
101
1110
11110
Yes
1
01
110
1110
11110
Yes
1
01
110
1110
11011
Yes
1
01
...

result:

ok good job! (379 test cases)

Test #299:

score: 23
Accepted
time: 39ms
memory: 84300kb

input:

10
4017 2564275
484 28572
129 402
192 3351
113 188
31 98
11 4
4 2
4 1
13 2

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (10 test cases)

Test #300:

score: 23
Accepted
time: 17ms
memory: 44044kb

input:

12
2006 756194
319 10305
479 35228
1295 125738
12 4
427 11376
111 1348
303 17209
39 52
3 0
3 1
3 0

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (12 test cases)

Test #301:

score: 23
Accepted
time: 26ms
memory: 64068kb

input:

9
3004 1215321
1223 238579
259 4165
424 33877
25 6
38 170
7 6
12 9
8 1

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (9 test cases)

Test #302:

score: 23
Accepted
time: 0ms
memory: 3984kb

input:

1
6 3

output:

Yes
1
11
101
1110
11110

result:

ok good job! (1 test case)

Test #303:

score: 23
Accepted
time: 0ms
memory: 3988kb

input:

1
7 4

output:

Yes
1
11
101
1110
11110
111110

result:

ok good job! (1 test case)

Test #304:

score: 23
Accepted
time: 1ms
memory: 6076kb

input:

1
19 37

output:

Yes
1
01
110
1011
11101
111101
1111101
11111101
111111101
1111111101
11111111101
111111111101
1111111111101
11111111111001
111111111111100
1111111111111100
11111111111111100
111111111111111100

result:

ok good job! (1 test case)

Test #305:

score: 23
Accepted
time: 0ms
memory: 4052kb

input:

1
20 90

output:

Yes
1
01
110
0011
11100
100111
1111001
11110001
111111000
1111111000
11111111000
111111111000
1111111111000
11111111111000
111111111111000
1111111111111000
11111111111111000
111111111111111000
1111111111111111000

result:

ok good job! (1 test case)

Test #306:

score: 23
Accepted
time: 1ms
memory: 8176kb

input:

1
149 1610

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
1111011000
11111101000
111111101000
1111111101000
11111111101000
111111111101000
1111111111101000
11111111111101000
111111111111101000
1111111111111101000
11111111111111101000
111111111111111101000
1111111111111111101000
111111111111111111010...

result:

ok good job! (1 test case)

Test #307:

score: 23
Accepted
time: 0ms
memory: 8204kb

input:

1
150 895

output:

Yes
1
01
110
0011
11100
000111
1111000
11111000
111111000
1111111000
11111111000
111111111000
1111111111000
11111111111000
111111111111000
1111111111111000
11111111111111000
111111111111111000
1111111111111111000
11111111111111111000
111111111111111111000
1111111111111111111000
111111111111111111110...

result:

ok good job! (1 test case)

Test #308:

score: 23
Accepted
time: 3ms
memory: 16568kb

input:

1
599 83482

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #309:

score: 23
Accepted
time: 3ms
memory: 16596kb

input:

1
600 23667

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
111110000111110000
1111111111000010000
11111111111000010000
111111111111000010000
1111111111111000010000
111111111111110000100...

result:

ok good job! (1 test case)

Test #310:

score: 23
Accepted
time: 64ms
memory: 100756kb

input:

1
4999 3217919

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #311:

score: 23
Accepted
time: 63ms
memory: 101004kb

input:

1
4999 3832640

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #312:

score: 23
Accepted
time: 62ms
memory: 100692kb

input:

1
5000 980053

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #313:

score: 23
Accepted
time: 54ms
memory: 100700kb

input:

1
5000 1846859

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #314:

score: 23
Accepted
time: 68ms
memory: 100420kb

input:

1
5000 4406415

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #315:

score: 23
Accepted
time: 0ms
memory: 3968kb

input:

1
4 2

output:

Yes
1
01
110

result:

ok good job! (1 test case)

Test #316:

score: 23
Accepted
time: 0ms
memory: 4000kb

input:

1
5 4

output:

Yes
1
01
110
1011

result:

ok good job! (1 test case)

Test #317:

score: 23
Accepted
time: 0ms
memory: 4032kb

input:

1
6 6

output:

Yes
1
01
110
1011
11101

result:

ok good job! (1 test case)

Test #318:

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

input:

1
7 9

output:

Yes
1
01
110
1011
11101
111001

result:

ok good job! (1 test case)

Test #319:

score: 23
Accepted
time: 1ms
memory: 6036kb

input:

1
19 81

output:

Yes
1
01
110
0011
11100
100111
1111001
11111001
111111001
1111111001
11111110001
111111111000
1111111111000
11111111111000
111111111111000
1111111111111000
11111111111111000
111111111111111000

result:

ok good job! (1 test case)

Test #320:

score: 23
Accepted
time: 0ms
memory: 4044kb

input:

1
20 90

output:

Yes
1
01
110
0011
11100
100111
1111001
11110001
111111000
1111111000
11111111000
111111111000
1111111111000
11111111111000
111111111111000
1111111111111000
11111111111111000
111111111111111000
1111111111111111000

result:

ok good job! (1 test case)

Test #321:

score: 23
Accepted
time: 1ms
memory: 6492kb

input:

1
149 5476

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
111111000111100000
1111111111000100000
11111111111000100000
111111111111000100000
1111111111110000110000
111111111111110000100...

result:

ok good job! (1 test case)

Test #322:

score: 23
Accepted
time: 0ms
memory: 6416kb

input:

1
150 5550

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
111110000111110000
1111111111000010000
11111111111000010000
111111111111000010000
1111111111111000010000
111111111111110000100...

result:

ok good job! (1 test case)

Test #323:

score: 23
Accepted
time: 3ms
memory: 16504kb

input:

1
599 89401

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #324:

score: 23
Accepted
time: 0ms
memory: 16816kb

input:

1
600 89700

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #325:

score: 23
Accepted
time: 63ms
memory: 101580kb

input:

1
4999 6245001

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #326:

score: 23
Accepted
time: 57ms
memory: 100604kb

input:

1
5000 6247500

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #327:

score: 23
Accepted
time: 0ms
memory: 3980kb

input:

1
4 0

output:

Yes
1
11
111

result:

ok good job! (1 test case)

Test #328:

score: 23
Accepted
time: 0ms
memory: 3976kb

input:

1
5 2

output:

Yes
1
11
101
1110

result:

ok good job! (1 test case)

Test #329:

score: 23
Accepted
time: 0ms
memory: 3980kb

input:

1
6 3

output:

Yes
1
11
101
1110
11110

result:

ok good job! (1 test case)

Test #330:

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

input:

1
7 5

output:

Yes
1
01
110
1110
11110
111110

result:

ok good job! (1 test case)

Test #331:

score: 23
Accepted
time: 0ms
memory: 4044kb

input:

1
19 76

output:

Yes
1
01
110
0011
11100
100111
1111001
11111001
111111001
1111111001
11111111001
111111111001
1111111111001
11111111111001
111111111111001
1111111111110001
11111111111111000
111111111111111000

result:

ok good job! (1 test case)

Test #332:

score: 23
Accepted
time: 1ms
memory: 6080kb

input:

1
20 85

output:

Yes
1
01
110
0011
11100
100111
1111001
11111001
111111001
1111111001
11111111001
111111111001
1111111110001
11111111111000
111111111111000
1111111111111000
11111111111111000
111111111111111000
1111111111111111000

result:

ok good job! (1 test case)

Test #333:

score: 23
Accepted
time: 1ms
memory: 6428kb

input:

1
149 5475

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
111111000111100000
1111111111000100000
11111111111000100000
111111111111000100000
1111111111111000100000
111111111111100001100...

result:

ok good job! (1 test case)

Test #334:

score: 23
Accepted
time: 1ms
memory: 8120kb

input:

1
150 5547

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
111110000111110000
1111111111000010000
11111111111000010000
111111111111000010000
1111111111111000010000
111111111111110000100...

result:

ok good job! (1 test case)

Test #335:

score: 23
Accepted
time: 0ms
memory: 14740kb

input:

1
599 89399

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #336:

score: 23
Accepted
time: 3ms
memory: 16736kb

input:

1
600 89699

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #337:

score: 23
Accepted
time: 60ms
memory: 101748kb

input:

1
4999 6244996

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #338:

score: 23
Accepted
time: 58ms
memory: 101464kb

input:

1
4999 6244998

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #339:

score: 23
Accepted
time: 73ms
memory: 101676kb

input:

1
5000 6247496

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #340:

score: 23
Accepted
time: 68ms
memory: 100600kb

input:

1
5000 6247496

output:

Yes
1
01
110
0011
11100
000111
1111000
00001111
111110000
0000011111
11111100000
000000111111
1111111000000
00000001111111
111111110000000
0000000011111111
11111111100000000
000000000111111111
1111111111000000000
00000000001111111111
111111111110000000000
0000000000011111111111
111111111111000000000...

result:

ok good job! (1 test case)

Test #341:

score: 0
Runtime Error

input:

1
4999 20808342499

output:


result: