CSES - Datatähti 2020 alku - Results
Submission details
Task:Merkkijonot
Sender:CursedTomb
Submission time:2019-10-09 16:55:50 +0300
Language:CPython2
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.02 s1, 2, 3details
#20.02 s2, 3details
#30.02 s3details
#40.02 s3details
#50.02 s3details
#60.02 s1, 2, 3details
#70.02 s1, 2, 3details
#80.02 s1, 2, 3details
#90.02 s1, 2, 3details
#100.02 s2, 3details
#110.02 s2, 3details
#120.02 s2, 3details
#130.02 s2, 3details
#140.02 s2, 3details
#150.02 s3details
#160.02 s3details
#170.02 s3details
#180.02 s3details
#190.02 s3details
#200.02 s1, 2, 3details
#210.01 s1, 2, 3details
#220.02 s1, 2, 3details
#230.02 s1, 2, 3details
#240.02 s1, 2, 3details

Code

from time import time
import math
aika = 0

'''
def search(lista):
	val = 0
	apu = [0]
	for x in range(1,len(lista)):
		if lista[0] == lista[x]:
			val += 1
			apu.append(x)
	
	apu.sort(reverse=True)
	for i in apu:
		lista.pop(i)

	sum = 0
	for i in range(1,val+1):
		sum = sum + i

	return  sum
'''
def str2Int(jono):
	apu = []
	val = 0
	for i in range(len(jono)):
		if jono[i] not in apu:
			apu.append(jono[i])
		val += apu.index(jono[i]) << i*8
	return val

'''def strToInt(jono):
	kohta = 0
	apu = ""
	for i in range(len(jono)):
		if jono[i] not in apu:
			apu += jono[i]
	for i in range(len(apu)):
		if kohta < 10:
			jono = jono.replace(apu[i],"0"+str(kohta), len(jono))
			kohta += 1
		else:
			jono = jono.replace(apu[i],str(kohta), len(jono))
			kohta += 1
	return jono
'''

def harmoniset(lista):
	tulos = 0
	for i in range(len(lista)):
		lista[i] = str2Int(lista[i])
	
	
	
	for i in list(dict.fromkeys(lista)):
		count = lista.count(i)
		tulos += sum(range(1,count))
	return tulos

lista = []
x = input()

#for i in range(53):
#	lista.append([])

#with open("data.txt","r") as f:
	#data = f.read()
	#apu = data.split("\n")	

#for i in range(len(apu)):
	#lista[len(apu[i])].append(str(apu[i]))

for i in range(int(x)):
	x = raw_input()
	lista[len(str(x))].append(str(x))


summa = 0

for i in lista:
	if len(i) < 2:
		continue
	else:
		listanLista = i
		tulos = 0
		
		for j in range(len(listanLista)):
			apu = []
			val = 0
	 		for k in range(len(listanLista[j])):
				if listanLista[j][k] not in apu:
					apu.append(listanLista[j][k])
				val += apu.index(listanLista[j][k]) << k*8
			listanLista[j] = val
		

		for j in list(dict.fromkeys(listanLista)):
			count = listanLista.count(j)
			tulos += sum(range(1,count))	
		summa += tulos 

print summa

Test details

Test 1

Group: 1, 2, 3

Verdict:

input
20
FFDISOVJLPIASANJRBHQXJVW
HBGVRZFWOTAAVUPYKMKXAOBEYUE
JKHXTPHUKTLTLNXMXMSYYFLF
HCSZMXTZCUFHIHSTEWKHCFZRTXU
...

correct output
20

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 2

Group: 2, 3

Verdict:

input
5000
AJEDROEDXRGDUSDAPZBXXQBPJ
PDGCTAGCRTBCJICPFELRRMLFD
TISAOTGMDKUCITIEFQVCSBZJYUUO
FMASVJYFPMELSVLQWFZVLVMSPHYL
...

correct output
2178556

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 3

Group: 3

Verdict:

input
100000
RESKYADLVRSDCDXJVECAJCAP
CZLIWDHKVNRJHZINHFBOQEPN
LSTRSDTLADUIWXFQJSQPVRSPBCTZ
QEMSZOQSSVBRNQTCLJQIGVQO
...

correct output
404880850

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 4

Group: 3

Verdict:

input
100000
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4999950000

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 5

Group: 3

Verdict:

input
100000
IPI
Q
SPGV
UNYE
...

correct output
1041990627

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 6

Group: 1, 2, 3

Verdict:

input
20
A
B
C
D
...

correct output
190

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 7

Group: 1, 2, 3

Verdict:

input
1
A

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 8

Group: 1, 2, 3

Verdict:

input
20
A
BB
CCC
DDDD
...

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 9

Group: 1, 2, 3

Verdict:

input
2
A
A

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 10

Group: 2, 3

Verdict:

input
5000
SEKNHNRHSRFYIHSCDPGXPTGUSYBFKZ...

correct output
20861

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 11

Group: 2, 3

Verdict:

input
5000
UGPWHWOWAREEIROZTRJGUCKDKTZJEO...

correct output
22818

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 12

Group: 2, 3

Verdict:

input
5000
FFQQCBCINBDWIKHFPO
SCJU
DNHYPGIQNZS
KNQCYRAXHHKORXMOVHL
...

correct output
22268

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 13

Group: 2, 3

Verdict:

input
5000
QVWMSYPWXWBBXWCVEOUAVQLDWNBXZB...

correct output
22589

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 14

Group: 2, 3

Verdict:

input
5000
JYORMNQAKXHNRBWGGSMWXWXMBKPBZU...

correct output
20482

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 15

Group: 3

Verdict:

input
100000
DCXXVIEYQAASZJYUUVYZUIJFGVBAYC...

correct output
8925377

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 16

Group: 3

Verdict:

input
100000
IJZHBIYNWQBDWNGZWVXJKXXWFVLPQX...

correct output
8907840

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 17

Group: 3

Verdict:

input
100000
GWUGLGQDAYGGJROIAKBMMICQMDUQQQ...

correct output
8771809

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 18

Group: 3

Verdict:

input
100000
SWVSVXURRSLCSHCPAKWESIPCNDKYLD...

correct output
8704480

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 19

Group: 3

Verdict:

input
100000
ZLSNSZBGIMCOLPDEAKVDAJCTMBNRLH...

correct output
8672362

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 20

Group: 1, 2, 3

Verdict:

input
20
AAB
D
CDBAA
D
...

correct output
15

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 21

Group: 1, 2, 3

Verdict:

input
20
A
CDD
AABBC
DBCB
...

correct output
15

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 22

Group: 1, 2, 3

Verdict:

input
20
ACADD
CDDCD
DACA
CCDCA
...

correct output
17

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 23

Group: 1, 2, 3

Verdict:

input
20
DCDA
BDBA
CACBD
BA
...

correct output
7

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range

Test 24

Group: 1, 2, 3

Verdict:

input
20
DDA
BBCDC
DDD
CCD
...

correct output
14

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 76, in <module>
    lista[len(str(x))].append(str(x))
IndexError: list index out of range