Task: | Ositus |
Sender: | Katto |
Submission time: | 2021-10-09 13:47:27 +0300 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | 40 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 40 |
#2 | TIME LIMIT EXCEEDED | 0 |
#3 | TIME LIMIT EXCEEDED | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.02 s | 1, 2, 3 | details |
#2 | ACCEPTED | 0.03 s | 1, 2, 3 | details |
#3 | ACCEPTED | 0.03 s | 1, 2, 3 | details |
#4 | ACCEPTED | 0.03 s | 1, 2, 3 | details |
#5 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
#6 | RUNTIME ERROR | 0.03 s | 3 | details |
#7 | TIME LIMIT EXCEEDED | -- | 3 | details |
Code
string = input() n = len(string)-1 viivat = [0 for i in range(n)] tavat = [] def line(n, viivat, tavat): for i in range(2): viivat[n] = i if viivat not in tavat: tavat.append(viivat.copy()) if n > 0: line(n-1, viivat, tavat) def main(): if n > 0: line(n-1, viivat, tavat) else: print(1) return total = 0 for item in tavat: cut = 0 result = [] for i in range(len(item)): if item[i] == 1: result.append(string[cut:i+1]) cut = i+1 result.append(string[cut:]) status = True for partition in result: for ch in partition: if partition.count(ch) > 1: status = False break if status == True: total += 1 print(total % 1000000007) return main()
Test details
Test 1
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
a |
correct output |
---|
1 |
user output |
---|
1 |
Test 2
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
abcdefghij |
correct output |
---|
512 |
user output |
---|
512 |
Test 3
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
abcabaacbc |
correct output |
---|
120 |
user output |
---|
120 |
Test 4
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
aaxxxxxxaa |
correct output |
---|
4 |
user output |
---|
4 |
Test 5
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
mfyzvoxmppoxcvktmcjkryyocfweub... |
correct output |
---|
643221148 |
user output |
---|
(empty) |
Test 6
Group: 3
Verdict: RUNTIME ERROR
input |
---|
weinscqmmpgbrlboocvtbptgbahmwv... |
correct output |
---|
831644159 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 43, in <module> main()...
Test 7
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
sxaoxcyrjoeieyinaqxwukgzdnhhsw... |
correct output |
---|
816016015 |
user output |
---|
(empty) |