Advertisement
icn_gavrilev

5_19237

Apr 5th, 2025
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.40 KB | None | 0 0
  1. def give_n3(n10: int) -> str:
  2.     n3 = ''
  3.     while n10 > 0:
  4.         n3 = str(n10 % 3) + n3
  5.         n10 //= 3
  6.     return n3
  7.  
  8.  
  9. min_r = 10**10
  10. for n in range(1, 100):
  11.     st = give_n3(n)
  12.     if n % 3 == 0:
  13.         st += st[-2:]
  14.     else:
  15.         st += give_n3(st.count('2')*2 + st.count('1'))
  16.     r = int(st, 3)
  17.     if r % 2 == 0 and 220 < r < min_r:
  18.         min_r = r
  19. print(min_r)  # output: 222
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement