题解 | #名字的漂亮度#
名字的漂亮度
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);
}
}

查看2道真题和解析