From 22c9512c57cfaa58dec4e655737c359b64c82766 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 27 Feb 2026 14:28:21 +0900 Subject: [PATCH] =?UTF-8?q?Add:=20claude=20check=20=EC=9A=A9=20basic=20?= =?UTF-8?q?=ED=92=80=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 --- .../seonghyeon.java" | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 "0305/basic_B11053_\352\260\200\354\236\245\352\270\264\354\246\235\352\260\200\355\225\230\353\212\224\353\266\200\353\266\204\354\210\230\354\227\264/seonghyeon.java" diff --git "a/0305/basic_B11053_\352\260\200\354\236\245\352\270\264\354\246\235\352\260\200\355\225\230\353\212\224\353\266\200\353\266\204\354\210\230\354\227\264/seonghyeon.java" "b/0305/basic_B11053_\352\260\200\354\236\245\352\270\264\354\246\235\352\260\200\355\225\230\353\212\224\353\266\200\353\266\204\354\210\230\354\227\264/seonghyeon.java" new file mode 100644 index 0000000..3198a9b --- /dev/null +++ "b/0305/basic_B11053_\352\260\200\354\236\245\352\270\264\354\246\235\352\260\200\355\225\230\353\212\224\353\266\200\353\266\204\354\210\230\354\227\264/seonghyeon.java" @@ -0,0 +1,30 @@ +import java.util.Scanner; + +public class Main{ + public static void main(String[] args) { + Scanner sc = new Scanner(System.in); + + int n=sc.nextInt(); + + int[] array = new int[n]; + int[] dp = new int[n]; + for(int i=0;iarray[j]){ + dp[i]=Math.max(dp[i],dp[j]+1); + } + } + } + + for(int i=0;i