import java.util.HashMap; import java.util.Scanner; import java.util.Set; public class JudgingTroubles { Scanner in = new Scanner(System.in); /*int number = in.nextInt(); long big_number = in.nextLong(); double decimal = in.nextDouble(); String word = in.next(); String line = in.nextLine();*/ HashMap buildMap(int start, int end, String[] listAll){ HashMap newMap = new HashMap(); for (int i=start; i wordCount1 = buildMap(0,results, listAll); HashMap wordCount2 = buildMap(results,results*2, listAll); int count = 0; Set allWords = wordCount1.keySet(); for (String word: allWords){ if (wordCount2.containsKey(word)){ int value1 = wordCount1.get(word); int value2 = wordCount2.get(word); if (value1