# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
647230 | 2022-10-02T03:02:47 Z | mr_robot_545 | Prosjek (COCI18_prosjek) | C++17 | 3 ms | 388 KB |
#include<bits/stdc++.h> using namespace std; void solve(){ int n; cin>>n; vector<double>v1(n),v2; for (int i = 0; i <n ; ++i) { cin>>v1[i]; } sort(v1.begin(),v1.end()); double ans=v1[0]; for (int i = 1; i <n ; ++i) { ans+=v1[i]; ans/=2.0; } cout<<fixed<<setprecision(6)<<ans<<endl; } int main() { #ifndef ONLINE_JUDGE freopen("in.txt", "r", stdin); freopen("out.txt", "w", stdout); #endif // w{ solve(); // } return 0; } // QAQGDQAQhdfj
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |
2 | Runtime error | 1 ms | 388 KB | Execution killed with signal 11 |
3 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |
4 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |
5 | Runtime error | 3 ms | 340 KB | Execution killed with signal 11 |
6 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |
7 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |
8 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |
9 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |
10 | Runtime error | 1 ms | 340 KB | Execution killed with signal 11 |