From 93d0b98e8dd73ab9d31b98d65aba4d982de407cb Mon Sep 17 00:00:00 2001 From: who-hoo <68011320+who-hoo@users.noreply.github.com> Date: Tue, 6 Dec 2022 23:44:27 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=80=20[=ED=9B=84]=2020221206=20"?= =?UTF-8?q?=EB=B0=B1=EC=A4=80=20-=20BOJ=EA=B1=B0=EB=A6=AC"=20=ED=92=80?= =?UTF-8?q?=EC=9D=B4=20=EC=A0=9C=EC=B6=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "\355\233\204/20221206_2.java" | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 "\355\233\204/20221206_2.java" diff --git "a/\355\233\204/20221206_2.java" "b/\355\233\204/20221206_2.java" new file mode 100644 index 0000000..fcc806e --- /dev/null +++ "b/\355\233\204/20221206_2.java" @@ -0,0 +1,13 @@ +import java.util.Scanner; + +public class Main { + + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + final int N = scanner.nextInt(); + String blocks = scanner.nextLine(); + scanner.close(); + + //TODO: BOJ를 외치면서 점프~! + } +}