| Task: | Merkkijonot |
| Sender: | jeps997 |
| Submission time: | 2019-10-09 18:35:48 +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 | WRONG ANSWER | 0.03 s | 1, 2, 3 | details |
| #2 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
| #3 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #4 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #5 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #6 | ACCEPTED | 0.03 s | 1, 2, 3 | details |
| #7 | ACCEPTED | 0.02 s | 1, 2, 3 | details |
| #8 | ACCEPTED | 0.02 s | 1, 2, 3 | details |
| #9 | ACCEPTED | 0.02 s | 1, 2, 3 | details |
| #10 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
| #11 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
| #12 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
| #13 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
| #14 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
| #15 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #16 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #17 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #18 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #19 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #20 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
| #21 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
| #22 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
| #23 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
| #24 | WRONG ANSWER | 0.02 s | 1, 2, 3 | details |
Code
# Syöte:
# 6
# AAB
# ABKA
# SSG
# TSGT
# ZZZZ
# KEAK
# Tuloste:
# 4
debug = False
# ESIM AAB JA SSG OVAT HARMOONINEN MERKKIJONOPARI
merkkijonot = []
spawnattavien_merkkijonojen_maara = int(input())
harmoonisten_merkkijonoparien_maara = 0
for i in range(spawnattavien_merkkijonojen_maara):
merkkijonot.append(str(input()))
alreadyFoundJonot = []
for a in range(len(merkkijonot)):
showed = False
for b in range(len(merkkijonot)):
# tarkista etä ovatko merkkijono1 ja merkkijonot2 harmooninen merkkijonopari
merkkijono1 = merkkijonot[a]
merkkijono2 = merkkijonot[b]
#print("iterating: ", merkkijono1, merkkijono2)
if len(merkkijono1) != len(merkkijono2) or b == a:
#print(merkkijono1, "and", merkkijono2, "are not same length, aborting")
continue
pari_table1 = [] # pari on 1 ja epäpari on 0
pari_table2 = []
for i in range(len(merkkijono1)):
if i == 0:
continue
else:
if merkkijono1[0] == merkkijono1[i]:
pari_table1.append(1)
elif merkkijono1[0] != merkkijono1[i]:
pari_table1.append(0)
if merkkijono2[0] == merkkijono2[i]:
pari_table2.append(1)
elif merkkijono2[0] != merkkijono2[i]:
pari_table2.append(0)
#print("comparing",merkkijono1,merkkijono2, "paritable: ", pari_table1, "paritable len", len(pari_table1))
# for num in range(len(pari_table1)):
# if pari_table1[num] == pari_table2[num]:
# if num == len(pari_table1)-1:
# print("They are pair!")
# harmoonisten_merkkijonoparien_maara += 1
# else:
# # they are not harmonic pair
# print("not harmonic pair")
# break
# AACC
# FFDD
# ASSA
# FSSF
# ASDF
# FDSA
# asd
# dsa
# asd
# asd
# 6
# AAB AAB
# ABKA ABKA
# SSG SSG
# TSGT TSGT
# ZZZZ ZZZZ
# KEAK KEAK
# mitä verrataan on merkkijono1
# mihin verrataan on merkkijono2
if debug: print(" comparing:", pari_table1, f"({merkkijono1})", pari_table2, f"({merkkijono2})")
if pari_table1 == pari_table2 and (((a, b)) not in alreadyFoundJonot and ((b, a)) not in alreadyFoundJonot):
alreadyFoundJonot.append((a, b))
if debug: print(" paritable found: ", pari_table1, " = ", pari_table2)
harmoonisten_merkkijonoparien_maara += 1
if debug: print("true")
continue
if debug: print(" false")
if debug: print("ilman pyöristystä: ", harmoonisten_merkkijonoparien_maara)
print(harmoonisten_merkkijonoparien_maara)Test details
Test 1
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 20 FFDISOVJLPIASANJRBHQXJVW HBGVRZFWOTAAVUPYKMKXAOBEYUE JKHXTPHUKTLTLNXMXMSYYFLF HCSZMXTZCUFHIHSTEWKHCFZRTXU ... |
| correct output |
|---|
| 20 |
| user output |
|---|
| 40 |
Test 2
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 5000 AJEDROEDXRGDUSDAPZBXXQBPJ PDGCTAGCRTBCJICPFELRRMLFD TISAOTGMDKUCITIEFQVCSBZJYUUO FMASVJYFPMELSVLQWFZVLVMSPHYL ... |
| correct output |
|---|
| 2178556 |
| user output |
|---|
| (empty) |
Test 3
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 RESKYADLVRSDCDXJVECAJCAP CZLIWDHKVNRJHZINHFBOQEPN LSTRSDTLADUIWXFQJSQPVRSPBCTZ QEMSZOQSSVBRNQTCLJQIGVQO ... |
| correct output |
|---|
| 404880850 |
| user output |
|---|
| (empty) |
Test 4
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
| correct output |
|---|
| 4999950000 |
| user output |
|---|
| (empty) |
Test 5
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 IPI Q SPGV UNYE ... |
| correct output |
|---|
| 1041990627 |
| user output |
|---|
| (empty) |
Test 6
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 20 A B C D ... |
| correct output |
|---|
| 190 |
| user output |
|---|
| 190 |
Test 7
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 1 A |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 8
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 20 A BB CCC DDDD ... |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 9
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 2 A A |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 10
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 5000 SEKNHNRHSRFYIHSCDPGXPTGUSYBFKZ... |
| correct output |
|---|
| 20861 |
| user output |
|---|
| (empty) |
Test 11
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 5000 UGPWHWOWAREEIROZTRJGUCKDKTZJEO... |
| correct output |
|---|
| 22818 |
| user output |
|---|
| (empty) |
Test 12
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 5000 FFQQCBCINBDWIKHFPO SCJU DNHYPGIQNZS KNQCYRAXHHKORXMOVHL ... |
| correct output |
|---|
| 22268 |
| user output |
|---|
| (empty) |
Test 13
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 5000 QVWMSYPWXWBBXWCVEOUAVQLDWNBXZB... |
| correct output |
|---|
| 22589 |
| user output |
|---|
| (empty) |
Test 14
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 5000 JYORMNQAKXHNRBWGGSMWXWXMBKPBZU... |
| correct output |
|---|
| 20482 |
| user output |
|---|
| (empty) |
Test 15
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 DCXXVIEYQAASZJYUUVYZUIJFGVBAYC... |
| correct output |
|---|
| 8925377 |
| user output |
|---|
| (empty) |
Test 16
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 IJZHBIYNWQBDWNGZWVXJKXXWFVLPQX... |
| correct output |
|---|
| 8907840 |
| user output |
|---|
| (empty) |
Test 17
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 GWUGLGQDAYGGJROIAKBMMICQMDUQQQ... |
| correct output |
|---|
| 8771809 |
| user output |
|---|
| (empty) |
Test 18
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 SWVSVXURRSLCSHCPAKWESIPCNDKYLD... |
| correct output |
|---|
| 8704480 |
| user output |
|---|
| (empty) |
Test 19
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 ZLSNSZBGIMCOLPDEAKVDAJCTMBNRLH... |
| correct output |
|---|
| 8672362 |
| user output |
|---|
| (empty) |
Test 20
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 20 AAB D CDBAA D ... |
| correct output |
|---|
| 15 |
| user output |
|---|
| 17 |
Test 21
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 20 A CDD AABBC DBCB ... |
| correct output |
|---|
| 15 |
| user output |
|---|
| 23 |
Test 22
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 20 ACADD CDDCD DACA CCDCA ... |
| correct output |
|---|
| 17 |
| user output |
|---|
| 19 |
Test 23
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 20 DCDA BDBA CACBD BA ... |
| correct output |
|---|
| 7 |
| user output |
|---|
| 9 |
Test 24
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 20 DDA BBCDC DDD CCD ... |
| correct output |
|---|
| 14 |
| user output |
|---|
| 19 |
