https://www.acmicpc.net/problem/19583 package BKD_0x15_Hash;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.HashSet;import java.util.StringTokenizer;public class BOJ_19583 { public static void main(String[] args) throws IOException { HashSet set = new HashSet(); BufferedReader br = new BufferedReader(new InputStreamRead..