#1. String타입 배열 #2. int 타입 배열 #HashMap #1. String타입 배열 import java.io.IOException; import java.io.InputStreamReader; import java.io.BufferedReader; public class Main{ public static void main(String[] args)throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); //배열안에 들어갈 정수의 갯수 //string 타입의 배열을 선언하면 입력한 여러개의 숫자를 한번에 다..