From cd2cda0f726f7613bbee1c7d6bc511e7fe116879 Mon Sep 17 00:00:00 2001 From: songyc macbook Date: Thu, 26 Feb 2026 20:19:48 +0900 Subject: [PATCH] baekjoon 20260226 --- code_study/Baekjoon/java/_1005_1.java | 59 +++++++++++++++++++++++++++ code_study/Baekjoon/java/_1005_2.java | 55 +++++++++++++++++++++++++ code_study/Baekjoon/swift/3460.swift | 24 +++++++++++ 3 files changed, 138 insertions(+) create mode 100644 code_study/Baekjoon/java/_1005_1.java create mode 100644 code_study/Baekjoon/java/_1005_2.java create mode 100644 code_study/Baekjoon/swift/3460.swift diff --git a/code_study/Baekjoon/java/_1005_1.java b/code_study/Baekjoon/java/_1005_1.java new file mode 100644 index 0000000..4713663 --- /dev/null +++ b/code_study/Baekjoon/java/_1005_1.java @@ -0,0 +1,59 @@ +import java.util.*; + +public class _1005_1 { + public static void main(String[] args) { + Scanner sc = new Scanner(System.in); + int T = sc.nextInt(); + int[] ans = new int[T]; + + for(int t=0; t