-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path누울 자리를 찾아라.java
More file actions
56 lines (48 loc) · 1.48 KB
/
누울 자리를 찾아라.java
File metadata and controls
56 lines (48 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
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());
String[] str = new String[n];
for (int i = 0; i < n; i++) {
str[i] = br.readLine();
}
int cnt_width = 0, cnt_height = 0;
for (int i = 0; i < n; i++) {
int flag = 0;
for (int j = 0; j < n; j++) {
if (str[i].charAt(j) == '.') {
flag++;
} else {
if (flag >= 2) {
cnt_width++;
}
flag = 0;
}
}
if (flag >= 2) {
cnt_width++;
}
}
for (int i = 0; i < n; i++) {
int flag = 0;
for (int j = 0; j < n; j++) {
if (str[j].charAt(i) == '.') {
flag++;
} else {
if (flag >= 2) {
cnt_height++;
}
flag = 0;
}
}
if (flag >= 2) {
cnt_height++;
}
}
System.out.print(cnt_width + " " + cnt_height);
}
}