-
Notifications
You must be signed in to change notification settings - Fork 26
/
1094.py
38 lines (25 loc) · 835 Bytes
/
1094.py
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
n = int(input())
sapo = 0
coelho = 0
rato = 0
total = 0
for i in range(n):
quantia, tipo = input().split()
quantia = int(quantia)
total = total + quantia
if(tipo == 'R'):
rato = rato + quantia
elif(tipo == 'S'):
sapo = sapo + quantia
elif(tipo == 'C'):
coelho = coelho + quantia
percentualCoelho = coelho / total * 100.00
percentualRato = rato / total * 100.00
percentualSapo = sapo / total * 100.00
print("Total: {} cobaias".format(total))
print("Total de coelhos: {}".format(coelho))
print("Total de ratos: {}".format(rato))
print("Total de sapos: {}".format(sapo))
print("Percentual de coelhos: {0:.2f} %".format(percentualCoelho))
print("Percentual de ratos: {0:.2f} %".format(percentualRato))
print("Percentual de sapos: {0:.2f} %".format(percentualSapo))