본문 바로가기

문제풀기113

구름톤 챌린지 3주 Day3 - 발전기(2) 발전기 (2) (Java) 제출한 답 : import java.util.*; public class Main { static int N, K; static int[][] matrix; static boolean[][] visited; static int[] dr = {-1, 1, 0, 0}; static int[] dc = {0, 0, -1, 1}; static class Point { int r, c; public Point(int r, int c) { this.r = r; this.c = c; } } public static void main(String[] args) { Scanner sc = new Scanner(System.in); N = sc.nextInt(); K = sc.nextInt();.. 2023. 9. 2.
구름톤 챌린지 3주 Day2 - 발전기 발전기 (Java) 제출한 답 : import java.util.*; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int N = scanner.nextInt(); int count = 0; int[][] matrix = new int[N][N]; boolean[][] visited = new boolean[N][N]; int[] dy = {1, -1, 0, 0}; int[] dx = {0, 0, 1, -1}; for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { matrix[i][j] = scanner.nextIn.. 2023. 9. 2.
구름톤 챌린지 3주 Day1 - 통증 (2) 통증 (2) (Java) 제출한 답 : import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int N = scanner.nextInt(); // 입력된 통증 수치 int A = scanner.nextInt(); // 아이템 A의 감소량 int B = scanner.nextInt(); // 아이템 B의 감소량 int minItems = Items(N, A, B); // 최소 아이템 개수 계산 System.out.println(minItems); // 결과 출력 scanner.close(); } public static int It.. 2023. 9. 2.
구름톤 챌린지 2주 Day5 - GameJam GameJam (Java) 제출한 답 : import java.util.*; import java.io.*; class Main { public static void main(String[] args) throws Exception { Scanner scanner = new Scanner(System.in); int N = scanner.nextInt(); int[][] start = new int[2][2]; for (int i = 0; i < 2; i++) { start[i][0] = scanner.nextInt() - 1; start[i][1] = scanner.nextInt() - 1; } String[][] gradle = new String[N][N]; for (int i = 0; i < N;.. 2023. 9. 2.
구름톤 챌린지 2주 Day4 - 폭탄 구현하기 (2) 폭탄 구현하기 (2) (Java) 제출한 답 : import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer firstLine = new StringTokenizer(br.readLine()); int N = Integer.parseInt(f.. 2023. 8. 25.
구름톤 챌린지 2주 Day3 - 통증 통증 (Java) 제출한 답 : import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); // 플레이어의 통증 수치 int[] items = {14, 7, 1}; // 아이템의 감소 수치 (크기별로 내림차순 정렬된 상태) int itemIndex = 0;.. 2023. 8. 24.