mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-13 08:46:34 +03:00
17 lines
204 B
Python
Vendored
17 lines
204 B
Python
Vendored
def f(n):
|
|
if n == 0:
|
|
return 0
|
|
if n % 2 == 0:
|
|
return f(n / 2) - 1
|
|
return f(n - 1) + 2
|
|
|
|
|
|
c = 0
|
|
|
|
for i in range(1000):
|
|
if f(i) == 3:
|
|
c += 1
|
|
|
|
|
|
print(c)
|