[백준] 21771. 가희야 거기서 자는거 아니야
문제 링크
풀이 과정
베개의 위치를 나타내는 문자 P
의 개수를 세, 그 개수가 베게의 가로(Rp
)와 세로(Cp
)의 곱과 같은 지 확인했습니다.
코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int R = sc.nextInt();
int C = sc.nextInt();
int Rg = sc.nextInt();
int Cg = sc.nextInt();
int Rp = sc.nextInt();
int Cp = sc.nextInt();
char[][] map = new char[R][C];
int cnt = 0;
for (int i = 0; i < R; i++) map[i] = sc.next().toCharArray();
for (int i = 0; i < R; i++)
for (int j = 0; j < C; j++)
if (map[i][j] == 'P') cnt++;
System.out.println(cnt == Rp * Cp ? 0 : 1);
}
}
댓글남기기