diff --git "a/lkhyun/202510/04 BOJ G4 \354\240\204\352\265\254\354\231\200 \354\212\244\354\234\204\354\271\230.md" "b/lkhyun/202510/04 BOJ G4 \354\240\204\352\265\254\354\231\200 \354\212\244\354\234\204\354\271\230.md" new file mode 100644 index 00000000..88cc5232 --- /dev/null +++ "b/lkhyun/202510/04 BOJ G4 \354\240\204\352\265\254\354\231\200 \354\212\244\354\234\204\354\271\230.md" @@ -0,0 +1,75 @@ +```java +import java.util.*; +import java.io.*; + +public class Main{ + static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); + static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); + static StringTokenizer st; + static StringBuilder sb = new StringBuilder(); + static int N; + static int[] input; + static int[] target; + static int cnt1 = 0; + static int cnt2 = 0; + + public static void main(String[] args) throws Exception { + N = Integer.parseInt(br.readLine()); + input = new int[N]; + target = new int[N]; + + String temp1 = br.readLine(); + String temp2 = br.readLine(); + + for(int i = 0;i