CSES - Datatähti 2016 alku - Results
Submission details
Task:Bittipeli
Sender:6502
Submission time:2015-09-28 23:28:47 +0300
Language:Python2
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
Test results
testverdicttimegroup
#10.06 s1details
#20.06 s1details
#30.06 s1details
#40.06 s1details
#50.06 s1details
#60.07 s1details
#70.06 s1details
#80.07 s1details
#90.05 s1details
#100.06 s1details
#110.06 s1details
#120.05 s1details
#130.05 s1details
#140.06 s1details
#150.05 s1details
#160.05 s1details
#170.04 s1details
#180.06 s1details
#190.05 s1details
#200.06 s1details
#210.06 s2details
#220.06 s2details
#230.06 s2details
#240.06 s2details
#250.06 s2details
#260.07 s2details
#270.07 s2details
#280.06 s2details
#290.06 s2details
#300.06 s2details
#310.06 s2details
#320.08 s2details
#330.06 s2details
#340.06 s2details
#350.05 s2details
#360.05 s2details
#370.06 s2details
#380.05 s2details
#390.06 s2details
#400.06 s2details
#410.06 s3details
#420.06 s3details
#430.05 s3details
#440.06 s3details
#450.06 s3details
#460.06 s3details
#470.04 s3details
#480.05 s3details
#490.07 s3details
#500.06 s3details
#510.05 s3details
#520.06 s3details
#530.06 s3details
#540.05 s3details
#550.04 s3details
#560.06 s3details
#570.05 s3details
#580.06 s3details
#590.06 s3details
#600.05 s3details
#610.06 s4details
#620.05 s4details
#630.06 s4details
#640.05 s4details
#650.04 s4details
#660.05 s4details
#670.05 s4details
#680.06 s4details
#690.05 s4details
#700.06 s4details
#710.05 s4details
#720.06 s4details
#730.05 s4details
#740.06 s4details
#750.07 s4details
#760.10 s4details
#770.10 s4details
#780.11 s4details
#790.05 s4details
#800.10 s4details

Code

q,b,x,v = False,input(),0,[]

def get_sequences(b):
    a=[]
    for i in range(0,len(b)):
        if i == 0 or b[i-1] != b[i]:
            a += [[i,1]]
        else:
            a[-1][1] += 1
    return a

methods = 1
def check_method(m,b):
    if m == 0:
        x,v=0,[]
        while len(b) > 0:
            n,m,k,l,o = get_sequences(b),0,0,0,0
            o=0
            for j in n:
                if j[1]>=k:
                    m,k=j
                    l=o
                o+=1
            if k==1:
                return (False, None, None)
            b=b[:m]+b[m+k:]
            x+=1
            v+=[l+1]
        if not q:
            return (True, x, v)

for j in range(methods):
    v=check_method(j,b)
    if v[0]:
        print(v[1])
        print(" ".join(map(str,v[2])))
        q=True
        break

if not q:
    print("QAQ")
    
            

Test details

Test 1

Group: 1

Verdict:

input
1011001010

correct output
QAQ

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 2

Group: 1

Verdict:

input
0000001001

correct output
3
1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 3

Group: 1

Verdict:

input
0111011100

correct output
3
2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 4

Group: 1

Verdict:

input
0100100100

correct output
4
2 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 5

Group: 1

Verdict:

input
1110010110

correct output
4
2 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 6

Group: 1

Verdict:

input
1111110110

correct output
3
1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 7

Group: 1

Verdict:

input
0011110001

correct output
3
1 2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 8

Group: 1

Verdict:

input
0111111000

correct output
2
1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 9

Group: 1

Verdict:

input
1111111100

correct output
2
1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 10

Group: 1

Verdict:

input
1000010011

correct output
3
2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 11

Group: 1

Verdict:

input
1101110000

correct output
3
1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 12

Group: 1

Verdict:

input
1101101100

correct output
4
1 2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 13

Group: 1

Verdict:

input
0100111110

correct output
3
1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 14

Group: 1

Verdict:

input
1101001011

correct output
4
2 2 2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 15

Group: 1

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 16

Group: 1

Verdict:

input
0011011100

correct output
3
3 2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 17

Group: 1

Verdict:

input
1100101011

correct output
QAQ

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 18

Group: 1

Verdict:

input
1101100111

correct output
3
2 2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 19

Group: 1

Verdict:

input
0110000100

correct output
3
2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 20

Group: 1

Verdict:

input
0000101000

correct output
QAQ

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 21

Group: 2

Verdict:

input
1110010100

correct output
QAQ

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 22

Group: 2

Verdict:

input
1110010000

correct output
3
2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 23

Group: 2

Verdict:

input
1001101100

correct output
4
1 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 24

Group: 2

Verdict:

input
0000000111

correct output
2
1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 25

Group: 2

Verdict:

input
0011111110

correct output
2
2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 26

Group: 2

Verdict:

input
1100101100

correct output
4
2 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 27

Group: 2

Verdict:

input
0111101110

correct output
3
2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 28

Group: 2

Verdict:

input
0000011011

correct output
3
2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 29

Group: 2

Verdict:

input
1110011101

correct output
3
3 2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 30

Group: 2

Verdict:

input
0001011011

correct output
4
1 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 31

Group: 2

Verdict:

input
0010110011

correct output
4
1 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 32

Group: 2

Verdict:

input
0011100000

correct output
2
2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 33

Group: 2

Verdict:

input
1110100110

correct output
4
1 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 34

Group: 2

Verdict:

input
0110110111

correct output
4
2 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 35

Group: 2

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 36

Group: 2

Verdict:

input
110011001100110011001010101010...

correct output
QAQ

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()

Test 37

Group: 2

Verdict:

input
110011001100110011001100101010...

correct output
QAQ

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()

Test 38

Group: 2

Verdict:

input
110011001100110011001100110011...

correct output
31
1 20 20 20 20 20 20 20 20 20 2...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()

Test 39

Group: 2

Verdict:

input
010101010101010101010101010101...

correct output
48
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()

Test 40

Group: 2

Verdict:

input
011010000011111011110000110011...

correct output
23
13 13 12 11 11 11 11 10 9 9 9 ...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()

Test 41

Group: 3

Verdict:

input
0010101000

correct output
QAQ

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 42

Group: 3

Verdict:

input
0100010110

correct output
4
2 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 43

Group: 3

Verdict:

input
0100110110

correct output
4
2 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 44

Group: 3

Verdict:

input
1110000001

correct output
2
2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 45

Group: 3

Verdict:

input
0001001110

correct output
3
2 2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 46

Group: 3

Verdict:

input
0011100011

correct output
3
1 2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 47

Group: 3

Verdict:

input
0100111100

correct output
3
1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 48

Group: 3

Verdict:

input
0001001000

correct output
3
2 2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 49

Group: 3

Verdict:

input
0100100010

correct output
4
2 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 50

Group: 3

Verdict:

input
1100101110

correct output
4
2 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 51

Group: 3

Verdict:

input
1000111011

correct output
3
2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 52

Group: 3

Verdict:

input
1000111111

correct output
2
1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 53

Group: 3

Verdict:

input
0110011100

correct output
3
2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 54

Group: 3

Verdict:

input
0001000110

correct output
3
2 2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 55

Group: 3

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 56

Group: 3

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()

Test 57

Group: 3

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()

Test 58

Group: 3

Verdict:

input
110011001100110011001100110011...

correct output
1501
1 1000 1000 1000 1000 1000 100...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()

Test 59

Group: 3

Verdict:

input
010101010101010101010101010101...

correct output
2498
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()

Test 60

Group: 3

Verdict:

input
011100011001011111111000010110...

correct output
1272
1 1 648 647 646 646 645 645 64...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()

Test 61

Group: 4

Verdict:

input
1110101110

correct output
QAQ

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 62

Group: 4

Verdict:

input
0111001011

correct output
4
2 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 63

Group: 4

Verdict:

input
1101111101

correct output
3
2 2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 64

Group: 4

Verdict:

input
1001110001

correct output
3
2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 65

Group: 4

Verdict:

input
1000000011

correct output
2
1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 66

Group: 4

Verdict:

input
0100010111

correct output
4
1 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 67

Group: 4

Verdict:

input
0100111010

correct output
4
2 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 68

Group: 4

Verdict:

input
0010111101

correct output
4
1 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 69

Group: 4

Verdict:

input
0011111000

correct output
2
2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 70

Group: 4

Verdict:

input
1101001101

correct output
4
2 2 2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 71

Group: 4

Verdict:

input
0110111000

correct output
3
2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 72

Group: 4

Verdict:

input
1100110111

correct output
3
3 2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 73

Group: 4

Verdict:

input
1110011111

correct output
2
2 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 74

Group: 4

Verdict:

input
1011000101

correct output
4
2 1 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 75

Group: 4

Verdict:

input
1110110010

correct output
4
1 2 1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'int' has no len()

Test 76

Group: 4

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()

Test 77

Group: 4

Verdict:

input
110011001100110011001100110011...

correct output
QAQ

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()

Test 78

Group: 4

Verdict:

input
110011001100110011001100110011...

correct output
30001
1 20000 20000 20000 20000 2000...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()

Test 79

Group: 4

Verdict:

input
010101010101010101010101010101...

correct output
49998
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()

Test 80

Group: 4

Verdict:

input
111000110000011000001101010010...

correct output
25011
1 12471 12470 12469 12468 1246...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 33, in <module>
    v=check_method(j,b)
  File "input/code.py", line 16, in check_method
    while len(b) > 0:
TypeError: object of type 'long' has no len()