Java716 [백준/Java] 34466번 Positioning Peter’s Paintings -Codeimport java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.StringTokenizer;public class BOJ34466 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int a = Integer.parseInt(st.nex.. 2025. 10. 28. [백준/Java] 34459번 MIT Time -Codeimport java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;public class BOJ34459 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int t = Integer.parseInt(br.readLine()); for (int i = 0; i 2025. 10. 27. [백준/Java] 34447번 Bad Directions -Codeimport java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.StringTokenizer;public class BOJ34447 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int t = Integer.parseInt(br.readLine()); for (int i = 0; i 2025. 10. 26. [백준/Java] 34441번 Ski Traffic -Codeimport java.util.Scanner;public class BOJ34441 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String name = sc.nextLine(); String[] time = sc.nextLine().split(":"); String day = sc.nextLine(); int weather = Integer.parseInt(sc.nextLine()); int snow = Integer.parseInt(sc.nextLine()); int holiday = Integer.pa.. 2025. 10. 25. [백준/Java] 28939번 Шкаф для обуви -Codeimport java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.StringTokenizer;public class BOJ28939 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); StringTokenizer st = new StringTokenizer(br.rea.. 2025. 10. 24. [백준/Java] 34429번 Late Larry -Codeimport java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;public class BOJ34429 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] line = br.readLine().split(" "); String[] time = line[0].split(":"); String d = line[1]; int late .. 2025. 10. 23. 이전 1 ··· 107 108 109 110 111 112 113 ··· 120 다음