| Task: | Leimasin |
| Sender: | valtteriilola |
| Submission time: | 2018-10-10 18:46:22 +0300 |
| Language: | Python3 |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| #2 | RUNTIME ERROR | 0 |
| #3 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.05 s | 1 | details |
| #2 | RUNTIME ERROR | 0.05 s | 1 | details |
| #3 | RUNTIME ERROR | 0.05 s | 1 | details |
| #4 | RUNTIME ERROR | 0.05 s | 1 | details |
| #5 | RUNTIME ERROR | 0.06 s | 1 | details |
| #6 | RUNTIME ERROR | 0.05 s | 1 | details |
| #7 | RUNTIME ERROR | 0.06 s | 1 | details |
| #8 | RUNTIME ERROR | 0.05 s | 1 | details |
| #9 | RUNTIME ERROR | 0.06 s | 1 | details |
| #10 | RUNTIME ERROR | 0.06 s | 1 | details |
| #11 | RUNTIME ERROR | 0.06 s | 1 | details |
| #12 | RUNTIME ERROR | 0.05 s | 1 | details |
| #13 | RUNTIME ERROR | 0.06 s | 1 | details |
| #14 | ACCEPTED | 0.06 s | 1 | details |
| #15 | RUNTIME ERROR | 0.06 s | 2 | details |
| #16 | RUNTIME ERROR | 0.06 s | 2 | details |
| #17 | RUNTIME ERROR | 0.06 s | 2 | details |
| #18 | RUNTIME ERROR | 0.06 s | 2 | details |
| #19 | RUNTIME ERROR | 0.05 s | 2 | details |
| #20 | RUNTIME ERROR | 0.06 s | 2 | details |
| #21 | RUNTIME ERROR | 0.06 s | 2 | details |
| #22 | RUNTIME ERROR | 0.05 s | 2 | details |
| #23 | RUNTIME ERROR | 0.05 s | 2 | details |
| #24 | RUNTIME ERROR | 0.06 s | 2 | details |
| #25 | RUNTIME ERROR | 0.06 s | 2 | details |
| #26 | RUNTIME ERROR | 0.06 s | 2 | details |
| #27 | RUNTIME ERROR | 0.06 s | 2 | details |
| #28 | ACCEPTED | 0.05 s | 2 | details |
| #29 | RUNTIME ERROR | 0.05 s | 3 | details |
| #30 | RUNTIME ERROR | 0.06 s | 3 | details |
| #31 | RUNTIME ERROR | 0.05 s | 3 | details |
| #32 | RUNTIME ERROR | 0.05 s | 3 | details |
| #33 | RUNTIME ERROR | 0.05 s | 3 | details |
| #34 | RUNTIME ERROR | 0.06 s | 3 | details |
| #35 | RUNTIME ERROR | 0.06 s | 3 | details |
| #36 | RUNTIME ERROR | 0.06 s | 3 | details |
| #37 | RUNTIME ERROR | 0.06 s | 3 | details |
| #38 | RUNTIME ERROR | 0.05 s | 3 | details |
| #39 | RUNTIME ERROR | 0.04 s | 3 | details |
| #40 | RUNTIME ERROR | 0.06 s | 3 | details |
| #41 | RUNTIME ERROR | 0.05 s | 3 | details |
| #42 | ACCEPTED | 0.05 s | 3 | details |
Code
import functools
@functools.lru_cache()
def substrings(stamp, n):
strings = {}
for size in range(n, 0, -1):
for start in range(0, len(stamp) - size + 1):
strings.add('?' * start + stamp[start:start + size] + '?' * (len(stamp) - size - start))
return strings
def solve(string, stamp):
if set(string) != set(stamp):
print(-1)
return
indices = []
while string != '?' * len(string):
n = min(len(stamp), max(len(s) for s in word.split()))
for i, s in enumerate(substrings(stamp, n)):
# hmmmm
if i == 500:
print(-1)
return
index = string.find(s)
if index != -1:
indices.append(index)
string = string[:index] + '?' * len(s) + string[index + len(s):]
break
else:
print(-1)
return
print(len(indices))
for i in reversed(indices):
print(i + 1, end=' ')
print()
if __name__ == '__main__':
word = input()
stamp = input()
solve(word, stamp)
Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| BBBBBBBBBB B |
| correct output |
|---|
| 10 10 9 8 7 6 5 4 3 2 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 2
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| AABBABABAB AB |
| correct output |
|---|
| 6 1 9 7 5 3 2 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 3
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| AABAAABAAA AABAA |
| correct output |
|---|
| 4 6 5 2 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 4
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| BAAAAAABBB BAAAAAABB |
| correct output |
|---|
| 2 2 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 5
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| AAABBABBAA AAABBABBAA |
| correct output |
|---|
| 1 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 6
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| GGGGGGGGGG G |
| correct output |
|---|
| 10 10 9 8 7 6 5 4 3 2 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 7
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| QUUQUUQUQU QU |
| correct output |
|---|
| 6 9 7 5 4 2 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 8
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| DWXDWDWXHJ DWXHJ |
| correct output |
|---|
| 3 1 4 6 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 9
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| FSOCRDGQBB FSOCRDGQB |
| correct output |
|---|
| 2 2 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 10
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| OETMIMPUPD OETMIMPUPD |
| correct output |
|---|
| 1 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 11
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| DOWEUOWUEU DOWEU |
| correct output |
|---|
| -1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 12
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| JQZYVSIWTE JQZVYSIWTE |
| correct output |
|---|
| -1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 13
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| ABABABABA ABA |
| correct output |
|---|
| 4 7 5 3 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 14
Group: 1
Verdict: ACCEPTED
| input |
|---|
| AAAAAAAAAA AAAAAAAAAB |
| correct output |
|---|
| -1 |
| user output |
|---|
| -1 |
Test 15
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB... |
| correct output |
|---|
| 100 100 99 98 97 96 95 94 93 92 91... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 16
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| BABABAAAAAAAAAAAAAAAAAABABAAAA... |
| correct output |
|---|
| 36 87 43 24 1 91 79 69 68 67 66 6... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 17
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| ABABAAAAABABBBBAAAABBBBAABBBBB... |
| correct output |
|---|
| 22 51 50 43 41 31 28 26 24 21 20 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 18
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| AAABABAAAABBBBBABABBAABBABABBA... |
| correct output |
|---|
| 2 1 2 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 19
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| AABABBBBBBAABBABABBBBBBAABBAAA... |
| correct output |
|---|
| 1 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 20
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| SSSSSSSSSSSSSSSSSSSSSSSSSSSSSS... |
| correct output |
|---|
| 100 100 99 98 97 96 95 94 93 92 91... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 21
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| NNNININIMNIMKLMXCNIMKLMXCDEIMK... |
| correct output |
|---|
| 18 1 2 3 74 5 79 58 7 84 64 37 10... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 22
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| VYQFNHMVTKOEYCXWINLKLHVFMEPQEU... |
| correct output |
|---|
| 3 51 2 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 23
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| IISNROLHLOJIWPTVFHFLUQRIROVLYP... |
| correct output |
|---|
| 2 1 2 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 24
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| WPMEMERJXXADLKONUZPUUFTPSXDHIV... |
| correct output |
|---|
| 1 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 25
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| LNSBGZAWFJZAWFJWFJLNSBLNSBGZAL... |
| correct output |
|---|
| -1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 26
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| IPIPYFUMRIPYFUMRLPIIIPYFIPYFUM... |
| correct output |
|---|
| -1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 27
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| ABABABABABABABABABABABABABABAB... |
| correct output |
|---|
| 49 97 95 93 91 89 87 85 83 81 79 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 28
Group: 2
Verdict: ACCEPTED
| input |
|---|
| AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
| correct output |
|---|
| -1 |
| user output |
|---|
| -1 |
Test 29
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB... |
| correct output |
|---|
| 1000 1000 999 998 997 996 995 994 9... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 30
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| BBBBBBBBAABBBBBBBBAABBBBBBBAAB... |
| correct output |
|---|
| 218 1 626 607 519 415 5 975 957 92... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 31
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| AABBBABAABABAAABBAAAAAAABBBAAB... |
| correct output |
|---|
| 55 569 639 403 761 663 437 172 90... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 32
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| ABBAAABAAABAAAAABBABABBABBABBB... |
| correct output |
|---|
| 2 2 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 33
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| BAAABBABBBAAAABAAAABBBBABAABAA... |
| correct output |
|---|
| 1 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 34
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| UUUUUUUUUUUUUUUUUUUUUUUUUUUUUU... |
| correct output |
|---|
| 1000 1000 999 998 997 996 995 994 9... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 35
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| KSBMRKKSBMRZXBDKSKSBMRZXBDAMRZ... |
| correct output |
|---|
| 178 723 731 1 935 857 820 760 735 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 36
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| ILYLILYLVJILYLVJZCCQDLFRLSXZDM... |
| correct output |
|---|
| 21 671 54 747 504 113 1 856 764 5... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 37
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| ZZJZNKHDLJBPXIAZNJIIGBEEJFSDAF... |
| correct output |
|---|
| 2 1 2 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 38
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| FIMWTOLSRKOWYDPCOFUJZMXJEJFKSU... |
| correct output |
|---|
| 1 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 39
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| AIVHCGUMKSTIYBRNPONXHRFVBKPYHX... |
| correct output |
|---|
| -1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 40
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| QPMSLIDCLFLBEXGVVQQNSVKJYXGETC... |
| correct output |
|---|
| -1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 41
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| ABABABABABABABABABABABABABABAB... |
| correct output |
|---|
| 499 997 995 993 991 989 987 985 98... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 46, in <module>
solve(...Test 42
Group: 3
Verdict: ACCEPTED
| input |
|---|
| AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
| correct output |
|---|
| -1 |
| user output |
|---|
| -1 |
