# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
541751 | 2022-03-24T09:52:42 Z | FazacasMihai | Baloni (COCI15_baloni) | C++17 | 2 ms | 340 KB |
#include <bits/stdc++.h> using namespace std; int v[1005], v2[1005]; 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
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Runtime error | 1 ms | 340 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 | 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 | 2 ms | 340 KB | Execution killed with signal 11 |