https://www.acmicpc.net/problem/1620 package BKD_0x15_Hash;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.HashMap;import java.util.StringTokenizer;public class BOJ_1620 { public static void main(String[] args) throws IOException { HashMap strKey = new HashMap(); HashMap intKey = new HashMap(); BufferedReader br =..