2024-05-21发表2025-01-15更新LeetCode每日一题几秒读完 (大约62个字)0次访问2769. 找出最大的可达成数字找出最大的可达成数字 难度: easy 原始链接: https://leetcode.cn/problems/find-the-maximum-achievable-number 标签: 直接计算 解法一: 直接计算go123func theMaximumAchievableX(num int, t int) int { return num + (t << 1)} 2769. 找出最大的可达成数字https://wuhunyu.top/leetcode/2024/05/find-the-maximum-achievable-number/index.html作者wuhunyu发布于2024-05-21更新于2025-01-15许可协议#直接计算