# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
541737 | 2022-03-24T09:45:14 Z | FazacasMihai | Baloni (COCI15_baloni) | C++14 | 34 ms | 1196 KB |
#include <bits/stdc++.h> using namespace std; int v[100005], v2[100005]; int main() { int n, k = 1, i, j, l; bool ok; cin>>n; for(i = 1; i <= n; i++) { cin>>v[i]; } v2[k] = v[1]; for(i = 2; i <= n; i++) { ok = 0; for(j = 1; j <= k; j++) { if(v[i] == v2[j] - 1) { v2[j]--; ok = 1; } } if(ok != 1) { k++; v2[k] = v[i]; } } cout<<k; return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 212 KB | Output isn't correct |
2 | Incorrect | 2 ms | 212 KB | Output isn't correct |
3 | Incorrect | 6 ms | 212 KB | Output isn't correct |
4 | Incorrect | 14 ms | 336 KB | Output isn't correct |
5 | Runtime error | 28 ms | 1196 KB | Execution killed with signal 11 |
6 | Runtime error | 27 ms | 1196 KB | Execution killed with signal 11 |
7 | Runtime error | 23 ms | 1104 KB | Execution killed with signal 11 |
8 | Runtime error | 23 ms | 1108 KB | Execution killed with signal 11 |
9 | Runtime error | 24 ms | 1124 KB | Execution killed with signal 11 |
10 | Runtime error | 34 ms | 1096 KB | Execution killed with signal 11 |