# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
604052 | 2022-07-24T16:17:01 Z | hyakup | Prosjek (COCI18_prosjek) | C++17 | 1 ms | 340 KB |
#include <bits/stdc++.h> using namespace std; int main(){ int n; scanf("%d", &n); multiset<double> s; for( int i = 0; i < n; i++){ double g; scanf("%lf", &g); s.insert(g); } multiset<double>::iterator it, it2; for( it = s.begin(); s.size() > 1 ; it++){ it2 = s.begin(); if( it == s.begin() ) continue; s.insert(( *it + *it2 )/2 ); s.erase(it); s.erase(it2); } printf("%lf", *(s.begin()) ); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 304 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
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 | 1 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 |