题解 | #名字的漂亮度#

名字的漂亮度

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

    }
}

全部评论

相关推荐

我的名字是句号:接好运
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务