Advertisement
nq1s788

8 (кол-во слов с номером дел на 3 и доп условия)

Sep 1st, 2024
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.77 KB | None | 0 0
  1. #https://inf-ege.sdamgia.ru/problem?id=68241
  2. alph = 'АЕКНРС'
  3. sogl = 'СКНР'
  4. cnt = 0
  5. num = 1 #номер текущего слова
  6. for q in alph:
  7.     for w in alph:
  8.         for e in alph:
  9.             for r in alph:
  10.                 for t in alph:
  11.                     for y in alph:
  12.                         for u in alph:
  13.                             for i in alph:
  14.                                 for o in alph:
  15.                                     for p in alph:
  16.                                         s = q + w + e + r + t + y + u + i + o + p
  17.                                         if (num % 3 == 0) and (s[0] in sogl) and (s.count('Р') == 1):
  18.                                             cnt += 1
  19.                                         num += 1
  20. print(cnt)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement