-
Notifications
You must be signed in to change notification settings - Fork 0
/
jungol_1239.java
48 lines (44 loc) · 1.09 KB
/
jungol_1239.java
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
package com.ssafy.algo;
import java.util.Scanner;
public class jungol_1239 {
static String list[] = {
"000000", // A
"001111", // B
"010011", // C
"011100", // D
"100110", // E
"101001", // F
"110101", // G
"111010" // H
};
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt(); sc.nextLine();
String s = sc.nextLine();
StringBuilder sb = new StringBuilder();
for(int i = 0; i < s.length(); i += 6) {
boolean flag = false;
// A - H 중 일치하는 것이 있는 지 검사
for(int j = 0; j < list.length; ++j) {
int cnt = 0;
for(int k = 0; k < list[j].length(); ++k) { // 일치하는 것의 개수 카운팅
if(list[j].charAt(k) == s.charAt(i + k))
++cnt;
}
// 일치하는 알파벳이 있을 경우
if(cnt >= 5) {
flag = true;
sb.append((char)('A' + j) + "");
break;
}
}
// 일치하는 알파벳이 없을 경우
if(!flag) {
System.out.println((i / 6 + 1) + "");
return;
}
}
// 알파벳이 있을 경우 출력
System.out.println(sb.toString());
}
}