2024-06-02发表2025-01-15更新LeetCode每日一题几秒读完 (大约82个字)0次访问2928. 给小朋友们分糖果 I给小朋友们分糖果 I 难度: easy 原始链接: https://leetcode.cn/problems/distribute-candies-among-children-i 标签: 数学 解法一: 数学go12345678910111213func distributeCandies(n int, limit int) int { ans := 0 for i := 0; i <= n && i <= limit; i++ { rest := n - i if rest > (limit << 1) { continue } maxVal := min(limit, rest) minVal := max(0, rest-limit) ans += maxVal - minVal + 1 } return ans} 2928. 给小朋友们分糖果 Ihttps://wuhunyu.top/leetcode/2024/06/distribute-candies-among-children-i/index.html作者wuhunyu发布于2024-06-02更新于2025-01-15许可协议#数学