#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];
}
m = -1;
for (int i = 0; i < n; i++){
for (int j = i; j < n; j++){
if (r[i] < r[j]){
m = r[i];
r[i] = r[j];
r[j] = m;
m = -1;
}
}
}
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;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
2 ms |
504 KB |
Output is correct |
3 |
Correct |
2 ms |
508 KB |
Output is correct |
4 |
Correct |
3 ms |
508 KB |
Output is correct |
5 |
Correct |
172 ms |
592 KB |
Output is correct |
6 |
Execution timed out |
1080 ms |
1484 KB |
Time limit exceeded |
7 |
Execution timed out |
1084 ms |
2188 KB |
Time limit exceeded |
8 |
Execution timed out |
1074 ms |
2628 KB |
Time limit exceeded |