题解 | #名字的漂亮度#

名字的漂亮度

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

import java.util.Scanner;

import java.util.*;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        in.nextLine();

        for (int i = 0; i < n; i++) {
            String str = in.nextLine();
            str = str.toUpperCase();

            char[] charArray = str.toCharArray();
            int[] intArray = new int[26];
            for (char c : charArray) {
                intArray[c - 'A']++;
            }
            Arrays.sort(intArray);

            int num = 0;
            for (int j = intArray.length - 1; j >= 0; j--) {
                num += (26 - (intArray.length - 1 - j)) * intArray[j];
            }
            System.out.println(num);

        }
    }
}

全部评论

相关推荐

服从性笔试吗,发这么多笔,现在还在发。
蟑螂恶霸zZ:傻 x 公司,发两次笔试,两次部门匹配挂,
投递金山WPS等公司10个岗位 >
点赞 评论 收藏
分享
孤寡孤寡的牛牛很热情:为什么我2本9硕投了很多,都是简历或者挂,难道那个恶心人的测评真的得认真做吗
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务