Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from collections import Counter
- # Конфигурация символов для слова "kaspersky"
- kaspersky_chars_config = Counter('kaspersky')
- # Считываем ввод пользователя и подсчитываем символы
- user_input_counter = Counter(input())
- # Инициализируем количество созданных слов как бесконечность
- created_words_amount = float('inf')
- # Вычисляем минимальное количество слов, которые можно создать
- created_words_amount = min(
- user_input_counter.get(char, 0) // need_amount
- for char, need_amount in kaspersky_chars_config.items()
- )
- print(created_words_amount)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement