-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path1168.cpp
42 lines (42 loc) · 1.07 KB
/
1168.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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/1168
#include <cstdio>
#include <cstring>
int main() {
int a, i;
scanf("%d", &a);
for (i = 0; i < a; i++) {
char davez[110];
scanf("%s", davez);
int resp = 0, j, tamanho = strlen(davez);
for (j = 0; j < tamanho; j++) {
char agora = davez[j];
switch (agora) {
case '1':
resp += 2;
break;
case '2':
case '3':
case '5':
resp += 5;
break;
case '4':
resp += 4;
break;
case '6':
case '9':
case '0':
resp += 6;
break;
case '7':
resp += 3;
break;
case '8':
resp += 7;
break;
}
}
printf("%d leds\n", resp);
}
return 0;
}