题解 | #名字的漂亮度#

名字的漂亮度

http://www.nowcoder.com/practice/02cb8d3597cf416d9f6ae1b9ddc4fde3

使用字典统计字母次数

单词中, 字母出现的次数越多, 其 '漂亮值' 越大. 使用字典统计出现次数. 然后 求和 于 字母次数*对应漂亮值.

def cal(s):
    dic = {}
    res = 0
    for i in s:
        dic[i] = dic.get(i, 0) + 1
    lst = sorted(list(dic.values()), reverse=True)
    for index in range(len(lst)):
        res += (26 - index) * lst[index]
    return res

num = int(input())
for i in range(num):
    s = input()
    print(cal(s))
全部评论

相关推荐

11-08 10:39
门头沟学院 C++
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务