0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-10 02:38:49 +00:00

P1765 手机

R38667223
This commit is contained in:
Baoshuo Ren 2020-09-20 17:26:00 +08:00 committed by Baoshuo Ren
parent a2a33e62da
commit 1af14a2a51
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

23
problem/P1765/P1765.cpp Normal file
View File

@ -0,0 +1,23 @@
// 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;
}