# [Python 3], 28 bytes

<!-- language-all: lang-python -->

    lambda x:max(26-x*11,x%12>0)

[Try it online!][TIO-ko8uo1au]

[Python 3]: https://docs.python.org/3/
[TIO-ko8uo1au]: https://tio.run/##DcdBCoAgEADAc71iL8FuWKRCh6Be0sUoyzALM7DXW3Ob6w3b6WTS/ZisOqZZQewOFVG0VSw5Z7HgYmgo6dODAePAK7cuyBnIhro8u7xxAe/g0VBt9@cOKIiB/kvpAw "Python 3 – Try It Online"

-4 bytes thanks to ovs

If the boolean output is invalid (in Python, `True == 1` and `False == 0`), add `+` before the `max` to turn it into an int.