-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1094.cpp
58 lines (44 loc) · 1.33 KB
/
1094.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// https://judge.beecrowd.com/en/problems/view/1094
/*
Time Complexity =>
Space Complexity =>
*/
#include <bits/stdc++.h>
using namespace std;
#define endl "\n"
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
ifstream input("input.txt");
ofstream output("output.txt");
int N = 0;
cin >> N;
int totalCoelhos = 0, totalRatos = 0, totalSapos = 0, totalAnimals = 0;
int number = 0;
char ch;
for (int i = 0; i < N; i++) {
cin >> number >> ch;
if (ch == 'C') {
totalCoelhos += number;
} else if (ch == 'R') {
totalRatos += number;
} else if (ch == 'S') {
totalSapos += number;
}
totalAnimals += number;
}
cout << "Total: " << totalAnimals << " cobaias" << endl;
cout << "Total de coelhos: " << totalCoelhos << endl;
cout << "Total de ratos: " << totalRatos << endl;
cout << "Total de sapos: " << totalSapos << endl;
cout << fixed << setprecision(2) << "Percentual de coelhos: "
<< ((double)totalCoelhos / totalAnimals) * 100 << " %" << endl;
cout << fixed << setprecision(2)
<< "Percentual de ratos: " << ((double)totalRatos / totalAnimals) * 100
<< " %" << endl;
cout << fixed << setprecision(2)
<< "Percentual de sapos: " << ((double)totalSapos / totalAnimals) * 100
<< " %" << endl;
return 0;
}