Caso # | Resultado | Tiempo | Memoria |
---|---|---|---|
#1 |
Correcto
|
0.021 s | 3 KBi |
#2 |
Correcto
|
0.025 s | 3 KBi |
#3 |
Incorrecto
|
0.021 s | 3 KBi |
#4 |
Correcto
|
0.022 s | 3 KBi |
#5 |
Incorrecto
|
0.019 s | 3 KBi |
#6 |
Correcto
|
0.021 s | 3 KBi |
#7 |
Correcto
|
0.022 s | 3 KBi |
#8 |
Correcto
|
0.02 s | 3 KBi |
#9 |
Correcto
|
0.022 s | 3 KBi |
#10 |
Correcto
|
0.019 s | 3 KBi |
#11 |
Correcto
|
0.021 s | 3 KBi |
#12 |
Correcto
|
0.029 s | 3 KBi |
word = input() # solvable with len(set(word)) == len(word) which relies on hashes so, here's a more explicit and simple version. # 512 is enough for strings on the a-z to not collide when using hash() and modulo HT_LEN = 1024 hash_tbl = [False] * HT_LEN repeated = 'yes' for char in word: idx = hash(char) % HT_LEN if hash_tbl[idx]: break else: hash_tbl[idx] = True else: repeated = 'no' print(repeated)