QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#109396 | #5204. Football | gigabuffoon# | AC ✓ | 2ms | 3560kb | C++20 | 1.5kb | 2023-05-28 21:37:35 | 2023-05-28 21:37:38 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
void solve(int tc) {
int N, A, B; cin >> N >> A >> B;
if(N == 1) {
cout << (A == B) << '\n';
cout << A << ":" << B << '\n';
return;
}
if(A + B >= N) {
cout << 0 << '\n';
if(A == 0) {
cout << 0 << ":" << B-(N-1) << '\n';
for(int i = 0; i < N-1; i++)
cout << "0:1" << '\n';
return;
}
if(B == 0) {
cout << A-(N-1) << ":" << 0 << '\n';
for(int i = 0; i < N-1; i++)
cout << "1:0" << '\n';
return;
}
int idx = 0;
while(idx < N-2 and A)
cout << "1:0" << '\n', A--, idx++;
if(idx == N-2 and A)
cout << A << ":0" << '\n', A = 0, idx++;
while(idx < N-1 and B)
cout << "0:1" << '\n', B--, idx++;
if(idx == N-1 and B)
cout << "0:" << B << '\n', B = 0, B++;
return;
} else {
cout << N-A-B << '\n';
int idx = 0;
while(A) cout << "1:0" << '\n', A--, idx++;
while(B) cout << "0:1" << '\n', B--, idx++;
while(idx < N) cout << "0:0" << '\n', idx++;
return;
}
}
int main() {
ios::sync_with_stdio(false), cin.tie(0);
solve(0);
cout.flush(); return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 3384kb
input:
3 2 4
output:
0 1:0 1:0 0:4
result:
ok [3 2:4] 0 draws
Test #2:
score: 0
Accepted
time: 0ms
memory: 3508kb
input:
1 2 2
output:
1 2:2
result:
ok [1 2:2] 1 draws
Test #3:
score: 0
Accepted
time: 2ms
memory: 3312kb
input:
4 0 7
output:
0 0:4 0:1 0:1 0:1
result:
ok [4 0:7] 0 draws
Test #4:
score: 0
Accepted
time: 1ms
memory: 3448kb
input:
6 3 1
output:
2 1:0 1:0 1:0 0:1 0:0 0:0
result:
ok [6 3:1] 2 draws
Test #5:
score: 0
Accepted
time: 0ms
memory: 3352kb
input:
1 0 0
output:
1 0:0
result:
ok [1 0:0] 1 draws
Test #6:
score: 0
Accepted
time: 1ms
memory: 3376kb
input:
1 0 1000
output:
0 0:1000
result:
ok [1 0:1000] 0 draws
Test #7:
score: 0
Accepted
time: 1ms
memory: 3372kb
input:
1 1000 0
output:
0 1000:0
result:
ok [1 1000:0] 0 draws
Test #8:
score: 0
Accepted
time: 0ms
memory: 3448kb
input:
1 1000 1000
output:
1 1000:1000
result:
ok [1 1000:1000] 1 draws
Test #9:
score: 0
Accepted
time: 2ms
memory: 3500kb
input:
1 1000 999
output:
0 1000:999
result:
ok [1 1000:999] 0 draws
Test #10:
score: 0
Accepted
time: 1ms
memory: 3500kb
input:
1 999 1000
output:
0 999:1000
result:
ok [1 999:1000] 0 draws
Test #11:
score: 0
Accepted
time: 0ms
memory: 3384kb
input:
2 0 0
output:
2 0:0 0:0
result:
ok [2 0:0] 2 draws
Test #12:
score: 0
Accepted
time: 2ms
memory: 3356kb
input:
2 0 1
output:
1 0:1 0:0
result:
ok [2 0:1] 1 draws
Test #13:
score: 0
Accepted
time: 1ms
memory: 3508kb
input:
2 1 0
output:
1 1:0 0:0
result:
ok [2 1:0] 1 draws
Test #14:
score: 0
Accepted
time: 2ms
memory: 3472kb
input:
2 1 1
output:
0 1:0 0:1
result:
ok [2 1:1] 0 draws
Test #15:
score: 0
Accepted
time: 2ms
memory: 3436kb
input:
2 0 2
output:
0 0:1 0:1
result:
ok [2 0:2] 0 draws
Test #16:
score: 0
Accepted
time: 2ms
memory: 3376kb
input:
2 2 0
output:
0 1:0 1:0
result:
ok [2 2:0] 0 draws
Test #17:
score: 0
Accepted
time: 2ms
memory: 3368kb
input:
2 2 1
output:
0 2:0 0:1
result:
ok [2 2:1] 0 draws
Test #18:
score: 0
Accepted
time: 2ms
memory: 3440kb
input:
2 1 2
output:
0 1:0 0:2
result:
ok [2 1:2] 0 draws
Test #19:
score: 0
Accepted
time: 0ms
memory: 3552kb
input:
2 2 2
output:
0 2:0 0:2
result:
ok [2 2:2] 0 draws
Test #20:
score: 0
Accepted
time: 2ms
memory: 3444kb
input:
2 3 0
output:
0 2:0 1:0
result:
ok [2 3:0] 0 draws
Test #21:
score: 0
Accepted
time: 0ms
memory: 3440kb
input:
2 3 1
output:
0 3:0 0:1
result:
ok [2 3:1] 0 draws
Test #22:
score: 0
Accepted
time: 2ms
memory: 3500kb
input:
2 3 2
output:
0 3:0 0:2
result:
ok [2 3:2] 0 draws
Test #23:
score: 0
Accepted
time: 0ms
memory: 3444kb
input:
2 0 3
output:
0 0:2 0:1
result:
ok [2 0:3] 0 draws
Test #24:
score: 0
Accepted
time: 1ms
memory: 3444kb
input:
2 1 3
output:
0 1:0 0:3
result:
ok [2 1:3] 0 draws
Test #25:
score: 0
Accepted
time: 2ms
memory: 3388kb
input:
2 2 3
output:
0 2:0 0:3
result:
ok [2 2:3] 0 draws
Test #26:
score: 0
Accepted
time: 1ms
memory: 3336kb
input:
2 3 3
output:
0 3:0 0:3
result:
ok [2 3:3] 0 draws
Test #27:
score: 0
Accepted
time: 2ms
memory: 3356kb
input:
3 0 0
output:
3 0:0 0:0 0:0
result:
ok [3 0:0] 3 draws
Test #28:
score: 0
Accepted
time: 0ms
memory: 3516kb
input:
3 0 1
output:
2 0:1 0:0 0:0
result:
ok [3 0:1] 2 draws
Test #29:
score: 0
Accepted
time: 2ms
memory: 3428kb
input:
3 1 0
output:
2 1:0 0:0 0:0
result:
ok [3 1:0] 2 draws
Test #30:
score: 0
Accepted
time: 2ms
memory: 3368kb
input:
3 1 1
output:
1 1:0 0:1 0:0
result:
ok [3 1:1] 1 draws
Test #31:
score: 0
Accepted
time: 1ms
memory: 3440kb
input:
3 0 2
output:
1 0:1 0:1 0:0
result:
ok [3 0:2] 1 draws
Test #32:
score: 0
Accepted
time: 2ms
memory: 3496kb
input:
3 2 0
output:
1 1:0 1:0 0:0
result:
ok [3 2:0] 1 draws
Test #33:
score: 0
Accepted
time: 0ms
memory: 3372kb
input:
3 2 1
output:
0 1:0 1:0 0:1
result:
ok [3 2:1] 0 draws
Test #34:
score: 0
Accepted
time: 1ms
memory: 3380kb
input:
3 1 2
output:
0 1:0 0:1 0:1
result:
ok [3 1:2] 0 draws
Test #35:
score: 0
Accepted
time: 2ms
memory: 3368kb
input:
3 2 2
output:
0 1:0 1:0 0:2
result:
ok [3 2:2] 0 draws
Test #36:
score: 0
Accepted
time: 2ms
memory: 3440kb
input:
3 3 0
output:
0 1:0 1:0 1:0
result:
ok [3 3:0] 0 draws
Test #37:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
3 3 2
output:
0 1:0 2:0 0:2
result:
ok [3 3:2] 0 draws
Test #38:
score: 0
Accepted
time: 2ms
memory: 3384kb
input:
3 0 3
output:
0 0:1 0:1 0:1
result:
ok [3 0:3] 0 draws
Test #39:
score: 0
Accepted
time: 2ms
memory: 3440kb
input:
3 1 3
output:
0 1:0 0:1 0:2
result:
ok [3 1:3] 0 draws
Test #40:
score: 0
Accepted
time: 2ms
memory: 3368kb
input:
3 3 3
output:
0 1:0 2:0 0:3
result:
ok [3 3:3] 0 draws
Test #41:
score: 0
Accepted
time: 0ms
memory: 3440kb
input:
4 0 0
output:
4 0:0 0:0 0:0 0:0
result:
ok [4 0:0] 4 draws
Test #42:
score: 0
Accepted
time: 0ms
memory: 3368kb
input:
4 1 0
output:
3 1:0 0:0 0:0 0:0
result:
ok [4 1:0] 3 draws
Test #43:
score: 0
Accepted
time: 2ms
memory: 3552kb
input:
4 1 1
output:
2 1:0 0:1 0:0 0:0
result:
ok [4 1:1] 2 draws
Test #44:
score: 0
Accepted
time: 2ms
memory: 3376kb
input:
4 0 2
output:
2 0:1 0:1 0:0 0:0
result:
ok [4 0:2] 2 draws
Test #45:
score: 0
Accepted
time: 2ms
memory: 3356kb
input:
4 2 1
output:
1 1:0 1:0 0:1 0:0
result:
ok [4 2:1] 1 draws
Test #46:
score: 0
Accepted
time: 0ms
memory: 3496kb
input:
4 2 2
output:
0 1:0 1:0 0:1 0:1
result:
ok [4 2:2] 0 draws
Test #47:
score: 0
Accepted
time: 2ms
memory: 3436kb
input:
4 3 0
output:
1 1:0 1:0 1:0 0:0
result:
ok [4 3:0] 1 draws
Test #48:
score: 0
Accepted
time: 2ms
memory: 3384kb
input:
4 3 2
output:
0 1:0 1:0 1:0 0:2
result:
ok [4 3:2] 0 draws
Test #49:
score: 0
Accepted
time: 2ms
memory: 3436kb
input:
4 1 3
output:
0 1:0 0:1 0:1 0:1
result:
ok [4 1:3] 0 draws
Test #50:
score: 0
Accepted
time: 2ms
memory: 3360kb
input:
4 3 3
output:
0 1:0 1:0 1:0 0:3
result:
ok [4 3:3] 0 draws
Test #51:
score: 0
Accepted
time: 2ms
memory: 3552kb
input:
100 0 0
output:
100 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 ...
result:
ok [100 0:0] 100 draws
Test #52:
score: 0
Accepted
time: 2ms
memory: 3372kb
input:
100 0 1000
output:
0 0:901 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 ...
result:
ok [100 0:1000] 0 draws
Test #53:
score: 0
Accepted
time: 1ms
memory: 3360kb
input:
100 1000 0
output:
0 901:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 ...
result:
ok [100 1000:0] 0 draws
Test #54:
score: 0
Accepted
time: 0ms
memory: 3444kb
input:
100 1000 1000
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:...
result:
ok [100 1000:1000] 0 draws
Test #55:
score: 0
Accepted
time: 2ms
memory: 3556kb
input:
100 1000 999
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:...
result:
ok [100 1000:999] 0 draws
Test #56:
score: 0
Accepted
time: 2ms
memory: 3304kb
input:
100 999 1000
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:...
result:
ok [100 999:1000] 0 draws
Test #57:
score: 0
Accepted
time: 1ms
memory: 3436kb
input:
100 40 59
output:
1 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:...
result:
ok [100 40:59] 1 draws
Test #58:
score: 0
Accepted
time: 1ms
memory: 3556kb
input:
100 32 17
output:
51 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0...
result:
ok [100 32:17] 51 draws
Test #59:
score: 0
Accepted
time: 1ms
memory: 3360kb
input:
100 11 39
output:
50 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0...
result:
ok [100 11:39] 50 draws
Test #60:
score: 0
Accepted
time: 1ms
memory: 3372kb
input:
100 30 40
output:
30 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:0 0:0 0:0 0:0 0...
result:
ok [100 30:40] 30 draws
Test #61:
score: 0
Accepted
time: 2ms
memory: 3372kb
input:
100 40 40
output:
20 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0...
result:
ok [100 40:40] 20 draws
Test #62:
score: 0
Accepted
time: 2ms
memory: 3560kb
input:
100 45 45
output:
10 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0...
result:
ok [100 45:45] 10 draws
Test #63:
score: 0
Accepted
time: 2ms
memory: 3376kb
input:
100 47 45
output:
8 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:...
result:
ok [100 47:45] 8 draws
Test #64:
score: 0
Accepted
time: 2ms
memory: 3508kb
input:
100 47 47
output:
6 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:...
result:
ok [100 47:47] 6 draws
Test #65:
score: 0
Accepted
time: 0ms
memory: 3384kb
input:
100 10 83
output:
7 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:...
result:
ok [100 10:83] 7 draws
Test #66:
score: 0
Accepted
time: 0ms
memory: 3452kb
input:
58 11 30
output:
17 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0
result:
ok [58 11:30] 17 draws
Test #67:
score: 0
Accepted
time: 2ms
memory: 3384kb
input:
54 34 12
output:
8 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0
result:
ok [54 34:12] 8 draws
Test #68:
score: 0
Accepted
time: 2ms
memory: 3436kb
input:
100 101 100
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:...
result:
ok [100 101:100] 0 draws
Test #69:
score: 0
Accepted
time: 0ms
memory: 3320kb
input:
100 101 0
output:
0 2:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:...
result:
ok [100 101:0] 0 draws
Test #70:
score: 0
Accepted
time: 1ms
memory: 3372kb
input:
100 0 101
output:
0 0:2 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:...
result:
ok [100 0:101] 0 draws
Test #71:
score: 0
Accepted
time: 2ms
memory: 3312kb
input:
10 10 0
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0
result:
ok [10 10:0] 0 draws
Test #72:
score: 0
Accepted
time: 0ms
memory: 3388kb
input:
10 0 10
output:
0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1
result:
ok [10 0:10] 0 draws
Test #73:
score: 0
Accepted
time: 2ms
memory: 3364kb
input:
99 99 1
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:...
result:
ok [99 99:1] 0 draws
Test #74:
score: 0
Accepted
time: 2ms
memory: 3376kb
input:
99 1 99
output:
0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:...
result:
ok [99 1:99] 0 draws
Test #75:
score: 0
Accepted
time: 2ms
memory: 3512kb
input:
99 99 0
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:...
result:
ok [99 99:0] 0 draws
Test #76:
score: 0
Accepted
time: 1ms
memory: 3356kb
input:
99 98 1
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:...
result:
ok [99 98:1] 0 draws
Test #77:
score: 0
Accepted
time: 2ms
memory: 3356kb
input:
100 0 1
output:
99 0:1 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0...
result:
ok [100 0:1] 99 draws
Test #78:
score: 0
Accepted
time: 2ms
memory: 3456kb
input:
100 1 0
output:
99 1:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0...
result:
ok [100 1:0] 99 draws
Test #79:
score: 0
Accepted
time: 2ms
memory: 3344kb
input:
100 1 1
output:
98 1:0 0:1 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0...
result:
ok [100 1:1] 98 draws
Test #80:
score: 0
Accepted
time: 2ms
memory: 3376kb
input:
100 0 2
output:
98 0:1 0:1 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0...
result:
ok [100 0:2] 98 draws
Test #81:
score: 0
Accepted
time: 2ms
memory: 3456kb
input:
100 2 0
output:
98 1:0 1:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0...
result:
ok [100 2:0] 98 draws
Test #82:
score: 0
Accepted
time: 2ms
memory: 3376kb
input:
100 2 1
output:
97 1:0 1:0 0:1 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0...
result:
ok [100 2:1] 97 draws
Test #83:
score: 0
Accepted
time: 2ms
memory: 3388kb
input:
100 1 2
output:
97 1:0 0:1 0:1 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0...
result:
ok [100 1:2] 97 draws
Test #84:
score: 0
Accepted
time: 2ms
memory: 3380kb
input:
100 2 2
output:
96 1:0 1:0 0:1 0:1 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0...
result:
ok [100 2:2] 96 draws
Test #85:
score: 0
Accepted
time: 2ms
memory: 3444kb
input:
100 3 3
output:
94 1:0 1:0 1:0 0:1 0:1 0:1 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0...
result:
ok [100 3:3] 94 draws
Test #86:
score: 0
Accepted
time: 2ms
memory: 3504kb
input:
3 11 13
output:
0 1:0 10:0 0:13
result:
ok [3 11:13] 0 draws
Test #87:
score: 0
Accepted
time: 0ms
memory: 3540kb
input:
10 1 13
output:
0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:5
result:
ok [10 1:13] 0 draws
Test #88:
score: 0
Accepted
time: 0ms
memory: 3368kb
input:
5 19 17
output:
0 1:0 1:0 1:0 16:0 0:17
result:
ok [5 19:17] 0 draws
Test #89:
score: 0
Accepted
time: 2ms
memory: 3436kb
input:
19 99 75
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 82:0 0:75
result:
ok [19 99:75] 0 draws
Test #90:
score: 0
Accepted
time: 2ms
memory: 3452kb
input:
36 82 68
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 48:0 0:68
result:
ok [36 82:68] 0 draws
Test #91:
score: 0
Accepted
time: 0ms
memory: 3376kb
input:
56 58 89
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 4:0 0:89
result:
ok [56 58:89] 0 draws
Test #92:
score: 0
Accepted
time: 0ms
memory: 3360kb
input:
84 100 99
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:...
result:
ok [84 100:99] 0 draws
Test #93:
score: 0
Accepted
time: 2ms
memory: 3384kb
input:
37 7 54
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:25
result:
ok [37 7:54] 0 draws
Test #94:
score: 0
Accepted
time: 2ms
memory: 3380kb
input:
22 68 46
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 48:0 0:46
result:
ok [22 68:46] 0 draws
Test #95:
score: 0
Accepted
time: 1ms
memory: 3500kb
input:
99 66 29
output:
4 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:...
result:
ok [99 66:29] 4 draws
Test #96:
score: 0
Accepted
time: 2ms
memory: 3548kb
input:
88 40 31
output:
17 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:0 0:0 0:0 0...
result:
ok [88 40:31] 17 draws
Test #97:
score: 0
Accepted
time: 2ms
memory: 3444kb
input:
74 44 42
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:13
result:
ok [74 44:42] 0 draws
Test #98:
score: 0
Accepted
time: 0ms
memory: 3356kb
input:
51 19 3
output:
29 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0 0:0
result:
ok [51 19:3] 29 draws
Test #99:
score: 0
Accepted
time: 1ms
memory: 3384kb
input:
36 9 28
output:
0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:2
result:
ok [36 9:28] 0 draws
Test #100:
score: 0
Accepted
time: 2ms
memory: 3548kb
input:
21 4 20
output:
0 1:0 1:0 1:0 1:0 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:1 0:4
result:
ok [21 4:20] 0 draws
Test #101:
score: 0
Accepted
time: 1ms
memory: 3436kb
input:
7 0 0
output:
7 0:0 0:0 0:0 0:0 0:0 0:0 0:0
result:
ok [7 0:0] 7 draws