본문 바로가기

IT/알고리즘

백준 7단계(5622)

반응형
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
 
public class Main {
 
    public static void main(String[] args) throws Exception{
        //키와 값이 정해져서 hashmap를 사용했어요
        HashMap<String, Integer> map = new HashMap<String, Integer>();
        map.put("A"3);
        map.put("B"3);
        map.put("C"3);
        map.put("D"4);
        map.put("E"4);
        map.put("F"4);
        map.put("G"5);
        map.put("H"5);
        map.put("I"5);
        map.put("J"6);
        map.put("K"6);
        map.put("L"6);
        map.put("M"7);
        map.put("N"7);
        map.put("O"7);
        map.put("P"8);
        map.put("Q"8);
        map.put("R"8);
        map.put("S"8);
        map.put("T"9);
        map.put("U"9);
        map.put("V"9);
        map.put("W"10);
        map.put("X"10);
        map.put("Y"10);
        map.put("Z"10);
        //가성비갑인 Buffered 형재들 갑니다
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
        //str안에 입력 받고
        String str = br.readLine();
        //char마다 split해주고
        String[] ch = str.split("");
        int sum = 0;
        //map안에 있는 해당 키의 숫자를 더하기
        for(int i = 0; i < ch.length; i++) {
            sum += map.get(ch[i]);
        }
        
        bw.write(String.valueOf(sum));
        bw.flush();
    }
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
 
반응형

'IT > 알고리즘' 카테고리의 다른 글

백준 7단계(1316)  (0) 2019.12.10
백준 7단계(2941)  (0) 2019.12.10
백준 7단계(2908)  (0) 2019.12.10
백준 7단계(1152)  (0) 2019.12.10
백준 7단계(1157)  (0) 2019.12.10