题解 | #名字的漂亮度#

名字的漂亮度

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

import java.util.*;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        int a = in.nextInt();
        while (in.hasNext()) { // 注意 while 处理多个 case
            String str1 = in.next();
            getMax(str1.toLowerCase());
        }
    }

    public static void getMax(String str ) {
        int [] arr = new int[26];
        for (int i = 0 ; i < str.length() ; i++) {
            arr[ str.charAt(i) - 'a' ] ++;
        }
        int pl = 26;
        int res = 0;
        Arrays.sort(arr);
        for (int i = 25 ; i >= 0 ; i--) {
            res += arr[i] * pl;
            pl--;
        }
        System.out.println( res);

    }
}

全部评论

相关推荐

allin实习的大白...:我把第二个项目发出来了,如果感兴趣可以去研究研究,欢迎交流。 https://gitee.com/jtyjtyjty333/ind-dist-ai-sec-edge-cloud https://github.com/jtylab/ind-dist-ai-sec-edge-cloud
点赞 评论 收藏
分享
2025-12-17 11:44
吉首大学 平台产品
黑着眼圈看手机:pdd秋招笔试挂了,春招还行吗
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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