题目:原题链接(简单)

标签:数学

解法 时间复杂度 空间复杂度 执行用时
Ans 1 (Python) O ( N ) O(N) O(N) O ( 1 ) O(1) O(1) 44ms (35.31%)
Ans 2 (Python)
Ans 3 (Python)

解法一:

class Solution:
    def minCount(self, coins: List[int]) -> int:
        return sum((coin + 1) // 2 for coin in coins)