题解列表

筛选

守望者的逃离-题解(Python代码)

摘要:笔者本题就写得很丑陋了.... 要算一定时间内最大移动距离si,就需要注意到递归关系: ```python si=max(si+17,u[m][ti%7]+120*(ti//7)) ``` ……