Java433 [백준/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. [백준/Java] 34450번 Partial Transmission -Codeimport java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.StringTokenizer;public class BOJ34450 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); int p = Integer.parseInt(br.readLine()); .. 2025. 10. 22. 이전 1 ··· 60 61 62 63 64 65 66 ··· 73 다음