diff --git a/code_study/Baekjoon/java/_1620.java b/code_study/Baekjoon/java/_1620.java new file mode 100644 index 0000000..575dd1b --- /dev/null +++ b/code_study/Baekjoon/java/_1620.java @@ -0,0 +1,30 @@ +import java.util.*; + +public class _1620 { + public static void main(String[] args){ + Scanner sc = new Scanner(System.in); + String[] num = sc.nextLine().split(" "); + int N = Integer.parseInt(num[0]); + int M = Integer.parseInt(num[1]); + + Map pokeDoc1 = new HashMap<>(); + Map pokeDoc2 = new HashMap<>(); + for(int i=0; i