COCI '16 Contest 4 #1 Bridž
View as PDFAfter a few months of playing on his new phone, Mirko has finally decided to find a new hobby. He discovered a card game called bridge!
It is known that bridge is played by four players using a -card deck, 
 suits total (
clubs, hearts, diamonds and spades) and 13 values (A, K, Q, J, 10, 9, 8, 7, 6, 5, 4, 3 and 2). At the beginning of the game, each player is dealt  cards.
Before starting the game, each player counts their so-called honor points in the following way:
- each ace (
A) is worthpoints
 - each king (
K) is worthpoints
 - each queen (
Q) is worthpoints
 - each jack (
J) is worthpoint
 - the remaining cards (that will be denoted with 
Xin this task) are worthpoints.
 
Given the fact that Mirko has started playing bridge only recently, he has decided to practice counting points. He dealt himself cards  times and each time counted his honor points. In the end, he added them up.
He wants to know if he's done a good job. Help Mirko and check!
Input Specification
The first line of input contains the integer  
 from the task.
Each of the following  lines contains 
, a string consisting of characters 
A, K, Q, J, X, of length , representing the cards Mirko had in his hand after dealing them for the 
 time.
Output Specification
The first and only line of output must contain the required sum from the task.
Sample Input 1
1
AKXAKJXXXAXAQ
Sample Output 1
25
Explanation for Sample Output 1
Mirko has a total of  aces, 
 kings, 
 queen and 
 jack in his hand. This totals to 
 honor points.
Sample Input 2
4
XXXAXXXXXXJXX
KXAXXXQJAXXXX
AQKQXXXKXXKQX
JXXXXXJXXXXXX
Sample Output 2
40
Comments