2025-08-21 16:50:01 +0300 MSK

Find the Maximum Achievable Number

Code

class Solution:
    def theMaximumAchievableX(self, num: int, t: int) -> int:
        return num + (t * 2)