음 아 이 문제 설명이 부족한 거 같아 0하고 1은 문자로 안 쓰고 그냥 누른다고 설명 해주지!!!
문제
https://www.acmicpc.net/problem/5622
소스
#include <iostream>
#include <string>
using namespace std;
int main(void) {
string number;
cin >> number;
char al[26] = {'A', 'B', 'C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'};
int num[26] = {3,3,3,4,4,4,5,5,5,6,6,6,7,7,7,8,8,8,8,9,9,9,10, 10, 10, 10 };
int count = 0;
for (int i = 0; i < number.length(); i++) {
if (number[i] == 0) {
count += 11; continue;
}
else if (number[i] == 1) {
count += 2; continue;
}
else {
for (int j = 0; j < 26; j++) {
if (al[j] == number[i]) {
count += num[j]; break;
}
}
}
}
cout << count;
return 0;
}
'개인 공부 > 코딩테스트' 카테고리의 다른 글
[C++][백준 2941][문자열 처리] 크로아티아 알파벳 :: seoftware (0) | 2020.02.16 |
---|---|
[C++][백준 1316][문자열 처리] 그룹 단어 체커 :: seoftware (0) | 2020.02.16 |
[C++][백준 2908][문자열 처리] 상수 :: seoftware (0) | 2020.02.16 |
[C++][백준 1157][문자열 처리] 단어 공부 :: seoftware (0) | 2020.02.16 |
[C++][백준 10809][문자열 처리] 알파벳 찾기 :: seoftware (0) | 2020.02.16 |
댓글