mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-15 01:16:36 +03:00
26 lines
622 B
Python
26 lines
622 B
Python
def f(p, x, y):
|
|
if x + y >= 47 or p > 4:
|
|
return p == 4
|
|
s = []
|
|
if x == y:
|
|
for i in range(1, 4):
|
|
s.append(f(p + 1, x + i, y))
|
|
for i in range(1, 4):
|
|
s.append(f(p + 1, x, y + i))
|
|
elif x > y:
|
|
for i in range(1, 4):
|
|
s.append(f(p + 1, x + i, y))
|
|
s.append(f(p + 1, x, y * 2))
|
|
else:
|
|
for i in range(1, 4):
|
|
s.append(f(p + 1, x, y + i))
|
|
s.append(f(p + 1, x * 2, y))
|
|
if p % 2 == 1:
|
|
return any(s)
|
|
return all(s)
|
|
|
|
|
|
for a in range(1, 42):
|
|
if f(1, 5, a):
|
|
print(a)
|