Advertisement
AlexG2230954

task 2

Oct 8th, 2023 (edited)
949
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.73 KB | Source Code | 0 0
  1. from collections import Counter
  2.  
  3. # Конфигурация символов для слова "kaspersky"
  4. kaspersky_chars_config = Counter('kaspersky')
  5.  
  6. # Считываем ввод пользователя и подсчитываем символы
  7. user_input_counter = Counter(input())
  8.  
  9. # Инициализируем количество созданных слов как бесконечность
  10. created_words_amount = float('inf')
  11.  
  12. # Вычисляем минимальное количество слов, которые можно создать
  13. created_words_amount = min(
  14.     user_input_counter.get(char, 0) // need_amount
  15.     for char, need_amount in kaspersky_chars_config.items()
  16. )
  17.  
  18. print(created_words_amount)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement