Advertisement
nq1s788

Untitled

Apr 5th, 2025
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.57 KB | None | 0 0
  1. alph1 = '123456'
  2. alph = '0123456'
  3. cnt = 0
  4. for q in alph1:
  5.     for w in alph:
  6.         for e in alph:
  7.             for r in alph:
  8.                 for t in alph:
  9.                     for y in alph:
  10.                         s = q + w + e + r + t + y
  11.                         nech = '135'
  12.                         f = True
  13.                         for i in range(5):
  14.                             if s[i] in nech and s[i + 1] in nech:
  15.                                 f = False
  16.                         if f and s.count('3') == 1:
  17.                             cnt += 1
  18. print(cnt)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement