| Task: | Ositus |
| Sender: | okkokko |
| Submission time: | 2021-10-07 17:16:26 +0300 |
| Language: | Python3 (CPython3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.02 s | 1, 2, 3 | details |
| #2 | ACCEPTED | 0.03 s | 1, 2, 3 | details |
| #3 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
| #4 | ACCEPTED | 0.02 s | 1, 2, 3 | details |
| #5 | WRONG ANSWER | 0.07 s | 2, 3 | details |
| #6 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #7 | TIME LIMIT EXCEEDED | -- | 3 | details |
Code
def Halve(s):
return s[:len(s)//2],s[len(s)//2:]
def noOverlaps(a,b):
for i in range(len(a)):
if b.find(a[i])!=-1:
return False
return True
def Partition(s:str):
if len(s)==1:
return {(s,s):1,("",s):1}
a0,b0 = Halve(s)
a=Partition(a0)
b=Partition(b0)
out={}
for i in a.keys():
for j in b.keys():
if noOverlaps(i[1],j[0]):
if i[0]==i[1]:
x = i[0]+j[0]
else:
x = i[0]
if j[0]==j[1]:
y = i[1]+j[1]
else:
y = j[1]
out.setdefault((x,y),0)
out[(x,y)]+=a[i]*b[j]
return out
def Total(d):
out=0
# oot=0
for i in d.keys():
if i[0]!='':
out+=d[i]
# else:
# oot+=d[i]
return out
I=input()
out1 =Partition(I)
# print(out1)
print(Total(out1)%(7+(10**9)))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: WRONG ANSWER
| input |
|---|
| abcabaacbc |
| correct output |
|---|
| 120 |
| user output |
|---|
| 113 |
Test 4
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| aaxxxxxxaa |
| correct output |
|---|
| 4 |
| user output |
|---|
| 4 |
Test 5
Group: 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| mfyzvoxmppoxcvktmcjkryyocfweub... |
| correct output |
|---|
| 643221148 |
| user output |
|---|
| 361144070 |
Test 6
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| weinscqmmpgbrlboocvtbptgbahmwv... |
| correct output |
|---|
| 831644159 |
| user output |
|---|
| (empty) |
Test 7
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| sxaoxcyrjoeieyinaqxwukgzdnhhsw... |
| correct output |
|---|
| 816016015 |
| user output |
|---|
| (empty) |
