Click Here to go back to the homepage.

Bela Solution:


import java.util.*;

public class Kattis {
    private static int ball = 1;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String[] firstLine = sc.nextLine().split(" ");
        int sets = 4 * Integer.parseInt(firstLine[0]);
        String dominant = firstLine[1];

        int total = 0;

        for(int i = 0; i < sets; i++){
            String[] line = sc.nextLine().split("");
            switch(line[0]){
                case "A": total+= 11; break;
                case "K": total+= 4; break;
                case "Q": total+= 3; break;
                case "J": total+= 2; break;
                case "T": total+= 10;
            }
            if(line[1].equals(dominant)){
                switch(line[0]){
                    case "J": total+= 18; break;
                    case "9": total+= 14;
                }
            }
        }
        System.out.println(total);
    }
}