Java464 [백준/Java] 7599번 Library Codes -Codeimport java.io.*;import java.util.*;public class BOJ7599 { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); while (true) { StringTokenizer st = new StringTokenizer(br.readLine()); String name = st.nextToken(); int fontWith = Integer.parseInt(st... 2026. 1. 22. [백준/Java] 1926번 그림 -Codeimport java.io.*;import java.util.*;public class BOJ1926 { static class Pos { int row, col; public Pos (int row, int col) { this.row = row; this.col = col; } } // 탐색 방향 셋팅 static int[] dRow = {1, 0, -1, 0}; static int[] dCol = {0, 1, 0, -1}; static int rowSize; static int colSize; static boolean[][] visited; static int[][.. 2026. 1. 21. [백준/Java] 19947번 투자의 귀재 배주형 -Codeimport java.io.*;import java.util.*;public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int h = Integer.parseInt(st.nextToken()); int y = Integer.parseInt(st.nextToken()); int[][] dp = new int[y +.. 2026. 1. 21. [백준/Java] 2502번 떡 먹는 호랑이 -Codeimport java.io.*;import java.util.*;public class BOJ2502 { static int[] dp; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int day = Integer.parseInt(st.nextToken()); int cnt = Integer.parseInt(st.nextToken()); .. 2026. 1. 21. [백준/Java] 34667번 가희와 철도역 -Codeimport java.util.Scanner;public class BOJ34667 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s = sc.next(); String t = sc.next(); System.out.println(s.charAt(0) + s); }} 2026. 1. 21. [백준/Java] 2583번 영역 구하기 -Codeimport java.io.*;import java.util.*;public class BOJ2583 { static class PosInfo { int row, col; public PosInfo (int row, int col) { this.row = row; this.col = col; } } public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new .. 2026. 1. 20. 이전 1 ··· 6 7 8 9 10 11 12 ··· 78 다음