diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2022-11-05 01:28:02 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2022-11-05 01:28:02 +0200 |
| commit | c52b36c6a37fdb1d1de146d3939cb42e2c691f44 (patch) | |
| tree | b13bbc546bf9505c875dde5d26424d39d23054c9 /codeforces/Drinks | |
| parent | b79a55ceee2f4532ef6621f9d86c6c61543ce6c9 (diff) | |
| download | competitive-programming-c52b36c6a37fdb1d1de146d3939cb42e2c691f44.tar.xz competitive-programming-c52b36c6a37fdb1d1de146d3939cb42e2c691f44.zip | |
Solved 6 problem in filtrationContest and restructured the repo
Diffstat (limited to 'codeforces/Drinks')
| -rw-r--r-- | codeforces/Drinks/inp | 0 | ||||
| -rwxr-xr-x | codeforces/Drinks/main | bin | 0 -> 22376 bytes | |||
| -rw-r--r-- | codeforces/Drinks/main.cpp | 19 | ||||
| -rw-r--r-- | codeforces/Drinks/main_input0.txt | 2 | ||||
| -rw-r--r-- | codeforces/Drinks/main_input1.txt | 2 | ||||
| -rw-r--r-- | codeforces/Drinks/main_output0.txt | 1 | ||||
| -rw-r--r-- | codeforces/Drinks/main_output1.txt | 1 |
7 files changed, 25 insertions, 0 deletions
diff --git a/codeforces/Drinks/inp b/codeforces/Drinks/inp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/codeforces/Drinks/inp diff --git a/codeforces/Drinks/main b/codeforces/Drinks/main Binary files differnew file mode 100755 index 0000000..4f56258 --- /dev/null +++ b/codeforces/Drinks/main diff --git a/codeforces/Drinks/main.cpp b/codeforces/Drinks/main.cpp new file mode 100644 index 0000000..e239ba4 --- /dev/null +++ b/codeforces/Drinks/main.cpp @@ -0,0 +1,19 @@ +#include<bits/stdc++.h> + +using namespace std; + +int main () { + ios_base::sync_with_stdio(false); + cin.tie(NULL); + int n; + cin >> n; + double sum = 0; + double ans; + for(int i = 0; i < n; i++) { + int x; + cin >> x; + sum += x; + } + ans = sum / (n * 100) * 100; + printf("%.12lf\n", ans); +} diff --git a/codeforces/Drinks/main_input0.txt b/codeforces/Drinks/main_input0.txt new file mode 100644 index 0000000..f1e85f0 --- /dev/null +++ b/codeforces/Drinks/main_input0.txt @@ -0,0 +1,2 @@ +3 +50 50 100 diff --git a/codeforces/Drinks/main_input1.txt b/codeforces/Drinks/main_input1.txt new file mode 100644 index 0000000..ff4433d --- /dev/null +++ b/codeforces/Drinks/main_input1.txt @@ -0,0 +1,2 @@ +4 +0 25 50 75 diff --git a/codeforces/Drinks/main_output0.txt b/codeforces/Drinks/main_output0.txt new file mode 100644 index 0000000..9353eab --- /dev/null +++ b/codeforces/Drinks/main_output0.txt @@ -0,0 +1 @@ +66.666666666667 diff --git a/codeforces/Drinks/main_output1.txt b/codeforces/Drinks/main_output1.txt new file mode 100644 index 0000000..992bd91 --- /dev/null +++ b/codeforces/Drinks/main_output1.txt @@ -0,0 +1 @@ +37.500000000000 |
