# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
723352 | 2023-04-13T16:00:58 Z | t_holl | Measures (CEOI22_measures) | C++14 | 1500 ms | 312 KB |
#include <bits/stdc++.h> using namespace std; int N, M, D; double compute (vector<int> &res) { int ans = 0; sort(res.begin(), res.end()); for (int i = 0; i < res.size(); i ++) for (int j = i; j < res.size(); j ++) ans = max(ans, D * (j - i) - (res[j] - res[i])); return ((double) ans) / 2.0; } int main() { cin >> N >> M >> D; vector<int> res; for (int i = 0; i < N; i ++) { int x; cin >> x; res.push_back(x); } for (int i = 0; i < M; i ++) { int x; cin >> x; res.push_back(x); cout << compute(res) << " "; } cout << endl; return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 27 ms | 212 KB | Output is correct |
2 | Incorrect | 25 ms | 308 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 27 ms | 212 KB | Output is correct |
2 | Incorrect | 25 ms | 308 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1571 ms | 312 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1571 ms | 312 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |