Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)
Total Submission(s): 0    Accepted Submission(s): 0


Problem Description
HDU 多校1.2

Talented Mr.Tang has strings consisting of only lower case characters. He wants to charge them with Balala Power (he could change each character ranged from a to z into each number ranged from 0 to 25, but each two different characters should not be changed into the same number) so that he could calculate the sum of these strings as integers in base hilariously.

Mr.Tang wants you to maximize the summation. Notice that no string in this problem could have leading zeros except for string "0". It is guaranteed that at least one character does not appear at the beginning of any string.

The summation may be quite large, so you should output it in modulo .
 

 

Input
The input contains multiple test cases.

For each test case, the first line contains one positive integers , the number of strings.

Each of the next lines contains a string consisting of only lower case letters.
 

 

Output
For each test case, output "Case # : " in one line (without quotes), where indicates the case number starting from and denotes the answer of corresponding case.
 

 

Sample Input
1 a 2 aa bb 3 a ba abc
 

 

Sample Output
Case #1: 25 Case #2: 1323 Case #3: 18221

相关文章:

  • 2021-07-07
  • 2021-11-24
  • 2021-08-10
  • 2021-12-11
  • 2021-11-28
  • 2021-07-11
  • 2021-09-05
  • 2021-08-03
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-29
  • 2021-10-07
  • 2022-12-23
  • 2021-10-10
相关资源
相似解决方案