#携程笔试# 水果组合题在自己电脑上运行结果是对的,提交出现了EOF when reading a line错误。有人知道原因嘛?

a=input().split(',')
b = [[item.count('a'), item.count('p')] for item in a]
m = int(input())
n = int(input())

def dp(index, m, n):
    if m <= 0 or n <= 0 or index < 0:
        return 0
    res = dp(index-1, m, n)
    if b[index][0] <= m and b[index][1] <= n:
        res = max(res, dp(index-1, m-b[index][0], n-b[index][1])+1)
    return res

print(dp(len(b)-1, m, n))
全部评论
while true: xxxxxxxxxxxxxxx except: break 这样的格式写
点赞 回复 分享
发布于 2021-04-29 19:13

相关推荐

链接
海梨花:我说话难听,你这简历跟没写没啥区别,搜搜别人的简历,用心写,不要随随便便就结束了
点赞 评论 收藏
分享
10-30 19:23
已编辑
山东大学(威海) C++
牛至超人:其实简历是不需要事无巨细的写的,让对方知道你有这段经历就行了,最重要的是面试的时候讲细讲明白
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务