-
Notifications
You must be signed in to change notification settings - Fork 0
/
teclado.cpp
43 lines (35 loc) · 847 Bytes
/
teclado.cpp
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
// iagorrr ;)
#include <bits/stdc++.h>
using namespace std;
int main(){
map<char, string> teclado;
teclado['2'] = "abc";
teclado['3'] = "def";
teclado['4'] = "ghi";
teclado['5'] = "jkl";
teclado['6'] = "mno";
teclado['7'] = "pqrs";
teclado['8'] = "tuv";
teclado['9'] = "wxyz";
string numero;
cin >> numero;
int q;
cin >> q;
int ans = 0 ;
while(q--){
string palavra;
cin >> palavra;
if(palavra.size() != numero.size()) continue;
bool check = true;
for(int i = 0; i < numero.size(); ++i){
if(teclado[numero[i]].find(palavra[i]) == teclado[numero[i]].npos){
check = false;
break;
}
}
if(check) ans++;
}
cout << ans << '\n';
return 0;
}
// 100/100 aceito