본문 바로가기

프로그래밍 문제68

[BOJ 2206번] 벽 부수고 이동하기(JAVA) www.acmicpc.net/problem/2206 2206번: 벽 부수고 이동하기 N×M의 행렬로 표현되는 맵이 있다. 맵에서 0은 이동할 수 있는 곳을 나타내고, 1은 이동할 수 없는 벽이 있는 곳을 나타낸다. 당신은 (1, 1)에서 (N, M)의 위치까지 이동하려 하는데, 이때 최단 경로�� www.acmicpc.net import java.io.*; import java.util.*; class Node{ int row, col, cnt, jump; Node(int row, int col, int cnt, int jump){ super(); this.row=row; this.col=col; this.cnt=cnt; this.jump=jump; } } class Main{ static Buffere.. 2020. 9. 25.
[BOJ 7569번] 토마토(JAVA) www.acmicpc.net/problem/7569 7569번: 토마토 첫 줄에는 상자의 크기를 나타내는 두 정수 M,N과 쌓아올려지는 상자의 수를 나타내는 H가 주어진다. M은 상자의 가로 칸의 수, N은 상자의 세로 칸의 수를 나타낸다. 단, 2 ≤ M ≤ 100, 2 ≤ N ≤ 100, www.acmicpc.net import java.io.*; import java.util.*; class Dot{ int x, y, z; Dot(int z, int x, int y){ this.x=x; this.y=y; this.z=z; } } class Main{ static BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); stati.. 2020. 9. 24.
[BOJ 7576번] 토마토(JAVA) www.acmicpc.net/problem/7576 7576번: 토마토 첫 줄에는 상자의 크기를 나타내는 두 정수 M,N이 주어진다. M은 상자의 가로 칸의 수, N은 상자의 세로 칸의 수를 나타낸다. 단, 2 ≤ M,N ≤ 1,000 이다. 둘째 줄부터는 하나의 상자에 저장된 토마토� www.acmicpc.net import java.io.*; import java.util.*; class Dot{ int x, y; Dot(int x, int y){ this.x=x; this.y=y; } } class Main{ static BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); static BufferedWriter bw=new.. 2020. 9. 23.
백준 3052 / C / 나머지 / * #include int main(void) { int arr[10]; int cnt = 0; int result = 0; for (int i = 0; i < 10; i++) { scanf("%d", &arr[i]); arr[i] = arr[i] % 42; } for (int i = 0; i < 10; i++) { for (int j = 0; i < 10 j++) { if (arr[i] == arr[j]) cnt++; } if (cnt == 0) result++; } printf("%d", result); return 0; } 문제 : 두 자연수 A와 B가 있을 때, A%B는 A를 B로 나눈 나머지 이다. 예를 들어, 7, 14, 27, 38을 3으로 나눈 나머지는 1, 2, 0, 2이다. 수 10개를 입.. 2020. 9. 23.