0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 08:45:25 +00:00
OI-codes/problem/P1765/P1765.cpp

24 lines
555 B
C++
Raw Normal View History

2020-09-20 09:26:00 +00:00
// R38667223
#include <bits/stdc++.h>
using namespace std;
int num[26] = {1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 4, 1, 2, 3, 1, 2, 3, 4};
// 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 main() {
char c;
int cnt = 0;
while (scanf("%c", &c) != EOF) {
if (c == ' ') {
cnt++;
}
else if('a' <= c && c <= 'z') {
cnt += num[c - 'a'];
}
// cout << c << ' ' << cnt << endl;
}
cout << cnt << endl;
return 0;
}