Advertisement
nq1s788

19 две кучи

Apr 2nd, 2025 (edited)
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.80 KB | None | 0 0
  1. #https://kpolyakov.spb.ru/school/ege/gen.php?action=viewVar&answers=on&varId=2
  2. from functools import lru_cache
  3.  
  4.  
  5. def moves(h):
  6.     x, y = h
  7.     return (x + 1, y), (x, y + 1), (x * 2, y), (x, y * 2)
  8.  
  9.  
  10. @lru_cache(None)
  11. def game(h):
  12.     if sum(h) >= 227:
  13.         return 'win'
  14.     elif any(game(m) == 'win' for m in moves(h)):
  15.         return'p1'
  16.     elif all(game(m) == 'p1' for m in moves(h)):
  17.         return'v1'
  18.     elif any(game(m) == 'v1' for m in moves(h)):
  19.         return'p2'
  20.     elif all(game(m) in ['p1', 'p2'] for m in moves(h)):
  21.         return'v2'
  22.  
  23.  
  24. def p19(h):
  25.     return any(game(m) == 'p1' for m in moves(h))
  26.  
  27.  
  28. print([s for s in range(1, 210) if p19((17, s))])
  29. print([s for s in range(1, 210) if game((17, s)) == 'p2'])
  30. print([s for s in range(1, 210) if game((17, s)) == 'v2'])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement