1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 19:18:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/心算挑战 [uOAnQW].md
2022-03-29 12:43:11 +08:00

23 lines
818 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

「力扣挑战赛」心算项目的挑战比赛中,要求选手从 `N` 张卡牌中选出 `cnt` 张卡牌,若这 `cnt` 张卡牌数字总和为偶数,则选手成绩「有效」且得分为 `cnt` 张卡牌数字总和。
给定数组 `cards``cnt`,其中 `cards[i]` 表示第 `i` 张卡牌上的数字。 请帮参赛选手计算最大的有效得分。若不存在获取有效得分的卡牌方案,则返回 0。
**示例 1**
>输入:`cards = [1,2,8,9], cnt = 3`
>
>输出:`18`
>
>解释:选择数字为 1、8、9 的这三张卡牌,此时可获得最大的有效得分 1+8+9=18。
**示例 2**
>输入:`cards = [3,3,1], cnt = 1`
>
>输出:`0`
>
>解释:不存在获取有效得分的卡牌方案。
**提示:**
- `1 <= cnt <= cards.length <= 10^5`
- `1 <= cards[i] <= 1000`