import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
char[] arr = br.readLine().toCharArray();
int time = 0;
for(char c : arr){
if(c <= 67) time += 3;
else if(c <= 70) time += 4;
else if(c <= 73) time += 5;
else if(c <= 76) time += 6;
else if(c <= 79) time += 7;
else if(c <= 83) time += 8;
else if(c <= 86) time += 9;
else time += 10;
}
System.out.println(time);
br.close();
}
}
'Coding Test > 백준' 카테고리의 다른 글
[백준/자바] 1920 - 수 찾기 (0) | 2023.05.09 |
---|---|
[백준/자바] 10988 - 팰린드롬인지 확인하기 (0) | 2023.05.08 |
[백준/자바] 2908 - 상수 (0) | 2023.05.08 |
[백준/자바] 2675 - 문자열 반복 (1) | 2023.05.08 |
[백준/자바] 10809 - 알파벳 찾기 (0) | 2023.05.08 |