CSES - Datatähti 2019 alku - Results
Submission details
Task:Leimasin
Sender:Kaapipo
Submission time:2018-10-04 22:45:28 +0300
Language:Python3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.06 s1details
#20.06 s1details
#3ACCEPTED0.06 s1details
#4ACCEPTED0.06 s1details
#5ACCEPTED0.06 s1details
#6ACCEPTED0.05 s1details
#70.07 s1details
#80.05 s1details
#9ACCEPTED0.06 s1details
#10ACCEPTED0.06 s1details
#110.06 s1details
#120.06 s1details
#13ACCEPTED0.06 s1details
#140.06 s1details
#15ACCEPTED0.06 s2details
#160.06 s2details
#170.16 s2details
#18ACCEPTED0.56 s2details
#19ACCEPTED0.57 s2details
#20ACCEPTED0.05 s2details
#210.07 s2details
#220.18 s2details
#23ACCEPTED0.57 s2details
#24ACCEPTED0.59 s2details
#250.06 s2details
#260.15 s2details
#270.06 s2details
#280.10 s2details
#29ACCEPTED0.08 s3details
#300.14 s3details
#31--3details
#32--3details
#33--3details
#34ACCEPTED0.08 s3details
#350.15 s3details
#36--3details
#37--3details
#38--3details
#390.59 s3details
#40--3details
#41ACCEPTED0.10 s3details
#42--3details

Code

import re

def tunge(merkkijono, leima, indeksi):
    lista1 = list(merkkijono)

    for i in range(len(leima)):
        lista1[indeksi + i] = leima[i]

    return ''.join(lista1)

merkkijono = input()
leimasin = input()

kama = "?" * len(merkkijono)

substringit = [leimasin[x:y] for x in range(len(leimasin)) for y in range(len(leimasin) + 1) if leimasin[x:y] != '']

substringit = list(set(substringit))
substringit.sort(key=len)

esiintyvät = []


for i in substringit:
    pattern = re.compile(i)
    temp = list(pattern.finditer(merkkijono))
    temp = list(map(lambda x: x.span()[0], temp))
    esiintyvät.append(temp)



esiintyvät = [item for sublist in esiintyvät for item in sublist]

poistettavat = []
for i in range(len(esiintyvät)):
    if esiintyvät[i] > len(merkkijono) - len(leimasin):
        poistettavat.append(esiintyvät[i])

for i in poistettavat:
    if i in esiintyvät:
        esiintyvät.remove(i)

for i in esiintyvät:
    try:
        kama = tunge(kama, leimasin, i)
    except IndexError:
        pass

# print(kama)
esiintyvät = list(map(lambda x: x + 1, esiintyvät))

print(len(esiintyvät))
print(*esiintyvät)




Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
BBBBBBBBBB
B

correct output
10
10 9 8 7 6 5 4 3 2 1 

user output
10
1 2 3 4 5 6 7 8 9 10

Test 2

Group: 1

Verdict:

input
AABBABABAB
AB

correct output
6
1 9 7 5 3 2 

user output
13
3 4 6 8 1 2 5 7 9 2 5 7 9

Test 3

Group: 1

Verdict: ACCEPTED

input
AABAAABAAA
AABAA

correct output
4
6 5 2 1 

user output
21
3 1 2 4 5 6 2 6 1 4 3 2 6 3 1 ...

Test 4

Group: 1

Verdict: ACCEPTED

input
BAAAAAABBB
BAAAAAABB

correct output
2
2 1 

user output
17
2 1 2 1 2 1 1 2 1 2 2 1 2 1 1 ...

Test 5

Group: 1

Verdict: ACCEPTED

input
AAABBABBAA
AAABBABBAA

correct output
1

user output
10
1 1 1 1 1 1 1 1 1 1

Test 6

Group: 1

Verdict: ACCEPTED

input
GGGGGGGGGG
G

correct output
10
10 9 8 7 6 5 4 3 2 1 

user output
10
1 2 3 4 5 6 7 8 9 10

Test 7

Group: 1

Verdict:

input
QUUQUUQUQU
QU

correct output
6
9 7 5 4 2 1 

user output
13
1 4 7 9 2 3 5 6 8 1 4 7 9

Test 8

Group: 1

Verdict:

input
DWXDWDWXHJ
DWXHJ

correct output
3
1 4 6 

user output
14
2 5 3 1 4 6 1 4 6 2 1 6 6 6

Test 9

Group: 1

Verdict: ACCEPTED

input
FSOCRDGQBB
FSOCRDGQB

correct output
2
2 1 

user output
17
2 1 1 2 1 2 1 2 2 1 2 1 1 2 2 ...

Test 10

Group: 1

Verdict: ACCEPTED

input
OETMIMPUPD
OETMIMPUPD

correct output
1

user output
10
1 1 1 1 1 1 1 1 1 1

Test 11

Group: 1

Verdict:

input
DOWEUOWUEU
DOWEU

correct output
-1

user output
17
2 6 3 4 1 5 1 2 6 4 3 2 1 3 2 ...

Test 12

Group: 1

Verdict:

input
JQZYVSIWTE
JQZVYSIWTE

correct output
-1

user output
3
1 1 1

Test 13

Group: 1

Verdict: ACCEPTED

input
ABABABABA
ABA

correct output
4
7 5 3 1 

user output
16
2 4 6 1 3 5 7 2 4 6 1 3 5 7 1 ...

Test 14

Group: 1

Verdict:

input
AAAAAAAAAA
AAAAAAAAAB

correct output
-1

user output
9
1 1 1 1 1 1 1 1 1

Test 15

Group: 2

Verdict: ACCEPTED

input
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB...

correct output
100
100 99 98 97 96 95 94 93 92 91...

user output
100
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

Test 16

Group: 2

Verdict:

input
BABABAAAAAAAAAAAAAAAAAABABAAAA...

correct output
36
87 43 24 1 91 79 69 68 67 66 6...

user output
340
1 3 5 24 26 31 33 43 45 46 48 ...

Test 17

Group: 2

Verdict:

input
ABABAAAAABABBBBAAAABBBBAABBBBB...

correct output
22
51 50 43 41 31 28 26 24 21 20 ...

user output
1489
2 4 10 12 13 14 15 20 21 22 23...

Test 18

Group: 2

Verdict: ACCEPTED

input
AAABABAAAABBBBBABABBAABBABABBA...

correct output
2
1 2 

user output
103
1 2 1 2 1 2 1 1 2 2 2 2 2 2 2 ...

Test 19

Group: 2

Verdict: ACCEPTED

input
AABABBBBBBAABBABABBBBBBAABBAAA...

correct output
1

user output
100
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

Test 20

Group: 2

Verdict: ACCEPTED

input
SSSSSSSSSSSSSSSSSSSSSSSSSSSSSS...

correct output
100
100 99 98 97 96 95 94 93 92 91...

user output
100
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

Test 21

Group: 2

Verdict:

input
NNNININIMNIMKLMXCNIMKLMXCDEIMK...

correct output
18
1 2 3 74 5 79 58 7 84 64 37 10...

user output
395
26 35 47 57 75 17 25 34 46 56 ...

Test 22

Group: 2

Verdict:

input
VYQFNHMVTKOEYCXWINLKLHVFMEPQEU...

correct output
3
51 2 1 

user output
1325
12 26 29 37 48 1 8 23 50 51 9 ...

Test 23

Group: 2

Verdict: ACCEPTED

input
IISNROLHLOJIWPTVFHFLUQRIROVLYP...

correct output
2
1 2 

user output
100
1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...

Test 24

Group: 2

Verdict: ACCEPTED

input
WPMEMERJXXADLKONUZPUUFTPSXDHIV...

correct output
1

user output
100
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

Test 25

Group: 2

Verdict:

input
LNSBGZAWFJZAWFJWFJLNSBLNSBGZAL...

correct output
-1

user output
391
2 20 24 31 43 47 58 60 69 80 4...

Test 26

Group: 2

Verdict:

input
IPIPYFUMRIPYFUMRLPIIIPYFIPYFUM...

correct output
-1

user output
292
6 13 24 28 40 9 16 31 43 50 49...

Test 27

Group: 2

Verdict:

input
ABABABABABABABABABABABABABABAB...

correct output
49
97 95 93 91 89 87 85 83 81 79 ...

user output
219
2 4 6 8 10 12 14 16 18 20 22 2...

Test 28

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
-1

user output
99
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

Test 29

Group: 3

Verdict: ACCEPTED

input
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB...

correct output
1000
1000 999 998 997 996 995 994 9...

user output
1000
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

Test 30

Group: 3

Verdict:

input
BBBBBBBBAABBBBBBBBAABBBBBBBAAB...

correct output
218
1 626 607 519 415 5 975 957 92...

user output
4608
1 2 3 4 5 6 7 8 11 12 13 14 15...

Test 31

Group: 3

Verdict:

input
AABBBABAABABAAABBAAAAAAABBBAAB...

correct output
55
569 639 403 761 663 437 172 90...

user output
(empty)

Test 32

Group: 3

Verdict:

input
ABBAAABAAABAAAAABBABABBABBABBB...

correct output
2
2 1 

user output
(empty)

Test 33

Group: 3

Verdict:

input
BAAABBABBBAAAABAAAABBBBABAABAA...

correct output
1

user output
(empty)

Test 34

Group: 3

Verdict: ACCEPTED

input
UUUUUUUUUUUUUUUUUUUUUUUUUUUUUU...

correct output
1000
1000 999 998 997 996 995 994 9...

user output
1000
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

Test 35

Group: 3

Verdict:

input
KSBMRKKSBMRZXBDKSKSBMRZXBDAMRZ...

correct output
178
723 731 1 935 857 820 760 735 ...

user output
4382
1 6 7 16 18 44 45 64 74 91 99 ...

Test 36

Group: 3

Verdict:

input
ILYLILYLVJILYLVJZCCQDLFRLSXZDM...

correct output
21
671 54 747 504 113 1 856 764 5...

user output
(empty)

Test 37

Group: 3

Verdict:

input
ZZJZNKHDLJBPXIAZNJIIGBEEJFSDAF...

correct output
2
1 2 

user output
(empty)

Test 38

Group: 3

Verdict:

input
FIMWTOLSRKOWYDPCOFUJZMXJEJFKSU...

correct output
1

user output
(empty)

Test 39

Group: 3

Verdict:

input
AIVHCGUMKSTIYBRNPONXHRFVBKPYHX...

correct output
-1

user output
18727
33 49 50 103 119 120 136 137 1...

Test 40

Group: 3

Verdict:

input
QPMSLIDCLFLBEXGVVQQNSVKJYXGETC...

correct output
-1

user output
(empty)

Test 41

Group: 3

Verdict: ACCEPTED

input
ABABABABABABABABABABABABABABAB...

correct output
499
997 995 993 991 989 987 985 98...

user output
2244
2 4 6 8 10 12 14 16 18 20 22 2...

Test 42

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
-1

user output
(empty)