#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <cctype>
using namespace std;
float r[300003], a, b, m, ma, mb, mon, mmon, n;
int main() {
cin >> n;
for (int i = 0; i < n; i++){
cin >> r[i];
mon += r[i];
}
while (m == 0){
m = 1;
for(int i = 0; i < (n-1); i++){
if (r[i] < r[i+1]){
m = r[i];
r[i] = r[i + 1];
r[i+1] = m;
m = 0;
}
}
}
for (int i = 1; i < n + 1; i++){
mmon += r[i-1];
a = (i * 100) / n;
b = mmon * 100 / mon;
if(b - a > mb - ma){
ma = a;
mb = b;
}
}
cout << ma << endl << mb;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
2 ms |
372 KB |
Output is correct |
3 |
Correct |
2 ms |
448 KB |
Output is correct |
4 |
Correct |
3 ms |
464 KB |
Output is correct |
5 |
Correct |
217 ms |
580 KB |
Output is correct |
6 |
Execution timed out |
1052 ms |
892 KB |
Time limit exceeded |
7 |
Execution timed out |
1057 ms |
1240 KB |
Time limit exceeded |
8 |
Execution timed out |
1063 ms |
1712 KB |
Time limit exceeded |