diff --git "a/LiiNi-coder/202508/08 BOJ \353\271\227\353\254\274.md" "b/LiiNi-coder/202508/08 BOJ \353\271\227\353\254\274.md" new file mode 100644 index 00000000..29e25495 --- /dev/null +++ "b/LiiNi-coder/202508/08 BOJ \353\271\227\353\254\274.md" @@ -0,0 +1,36 @@ +```java +import java.io.*; +import java.util.*; +public class Main { + private static BufferedReader br; + private static int H, W; + private static int[] Walls; + private static StringTokenizer st; + public static void main(String[] args) throws IOException { + br = new BufferedReader(new InputStreamReader(System.in)); + String[] temp = br.readLine().split(" "); + H = Integer.parseInt(temp[0]); + W = Integer.parseInt(temp[1]); + + st = new StringTokenizer(br.readLine()); + int answer = 0; + int sum = 0; + + int leftH = Integer.parseInt(st.nextToken()); + for(int w = 1; w