题解 | #名字的漂亮度#

名字的漂亮度

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);

    }
}

全部评论

相关推荐

06-23 11:43
门头沟学院 Java
allin校招的烤冷...:我靠,今天中午我也是这个hr隔一个星期发消息给我。问的问题还是一模一样的😅
点赞 评论 收藏
分享
06-02 15:53
阳光学院 Java
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
昨天 11:00
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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