백준
-
[브론즈 Ⅳ] 1008번 :: A/B / Java백준/브론즈 2022. 5. 2. 17:39
문제 https://www.acmicpc.net/problem/1008 1008번: A/B 두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오. www.acmicpc.net 코드 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); double A = scan.nextDouble(); double B = scan.nextDouble(); System.out.println(A/B); scan.close(); } }
-
[브론즈 Ⅴ] 25083번 :: 새싹 / Java백준/브론즈 2022. 5. 2. 17:35
문제 https://www.acmicpc.net/problem/25083 25083번: 새싹 아래 예제와 같이 새싹을 출력하시오. www.acmicpc.net 코드 public class Main { public static void main(String[] args) { System.out.println(" ,r'\"7 \n" + "r`-_ ,' ,/ \n" + " \\. \". L_r' \n" + " `~\\/ \n" + " | \n" + " |"); } }
-
[브론즈 Ⅴ] 24568번 :: Cupcake Party / Java백준/브론즈 2022. 4. 29. 20:28
문제 https://www.acmicpc.net/problem/24568 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); int R = Integer.parseInt(bf.readLine()); int S = Integer.parseInt(bf.readLine()); int count = 28; if(count ..
-
[브론즈 Ⅴ] 24262번 :: 알고리즘 수업 - 알고리즘의 수행 시간 1 / Java백준/브론즈 2022. 4. 29. 20:17
문제 https://www.acmicpc.net/problem/24262 24262번: 알고리즘 수업 - 알고리즘의 수행 시간 1 오늘도 서준이는 알고리즘의 수행시간 수업 조교를 하고 있다. 아빠가 수업한 내용을 학생들이 잘 이해했는지 문제를 통해서 확인해보자. 입력의 크기 n이 주어지면 MenOfPassion 알고리즘 수행 www.acmicpc.net 코드 public class Main { public static void main(String[] args) { System.out.println("1"); System.out.println("0"); } }
-
[브론즈 Ⅴ] 23234번 :: The World Responds / Java백준/브론즈 2022. 4. 29. 20:12
문제 https://www.acmicpc.net/problem/23234 23234번: The World Responds In many introductory computer programming classes, the first program that students learn to write just prints “Hello, world!” It is used as a first assignment because it is a simple program that produces output. The program dates back to at least 1974, www.acmicpc.net 코드 public class Main { public static void main(String[] args)..
-
[브론즈 Ⅴ] 22193번 :: Multiply / Java백준/브론즈 2022. 4. 29. 20:10
문제 https://www.acmicpc.net/problem/22193 22193번: Multiply Write a program that computes a product of two non-negative integers A and B. The integers are represented in decimal notation and have N and M digits, respectively. www.acmicpc.net 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.math.BigInteger; public class Main { public static..
-
[브론즈 Ⅴ] 21300번 :: Bottle Return / Java백준/브론즈 2022. 4. 29. 20:02
문제 https://www.acmicpc.net/problem/21300 21300번: Bottle Return In the United States, beverage container deposit laws, or so-called bottle bills, are designed to reduce litter and reclaim bottles, cans and other containers for recycling. Ten states currently have some sort of deposit-refund systems in place for differe www.acmicpc.net 코드 import java.util.Scanner; public class Main { public static..
-
[브론즈 Ⅴ] 20492번 :: 세금 / Java백준/브론즈 2022. 4. 28. 16:44
문제 https://www.acmicpc.net/problem/20492 20492번: 세금 선린인터넷고등학교의 한 학생은 프로그래밍 대회에 참가하여 거액의 상금을 수상하는 영광을 누리게 되었다. 하지만, 이 학생이 상금 금액의 전부를 수령하게 되는 것은 아니다. 상금의 일부 www.acmicpc.net 코드 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); scan.close(); double a = N - (N*0.22); double b = N*0.8 + ((N*0.2) - ((N*0..