# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
64061 | 2018-08-03T09:31:33 Z | Just_Solve_The_Problem | Zalmoxis (BOI18_zalmoxis) | C++11 | 255 ms | 10432 KB |
#include <bits/stdc++.h> using namespace std; #define ll long long const int N = (int)1e6 + 7; const int inf = (int)1e9 + 7; int n, k; ll a[N]; map < ll, int > cnt; main() { scanf("%d %d", &n, &k); assert(k == 1); ll mn = (ll)1e18; for (int i = 1; i <= n; i++) { scanf("%lld", &a[i]); mn = min(mn, a[i]); cnt[a[i]]++; } ll cur = -1; while (1) { if (cnt[mn] & 1) { cur = mn; break; } cnt[mn + 1] += cnt[mn] / 2; cnt[mn] = 0; mn++; } assert(cur != -1); for (int i = 1; i <= n; i++) { if (a[i] <= cur) { if (cur != -1) { printf("%lld ", cur); cur = -1; } } if (i == n) printf("%lld", a[i]); else printf("%lld ", a[i]); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 206 ms | 10104 KB | not a zalsequence |
2 | Incorrect | 239 ms | 10320 KB | not a zalsequence |
3 | Incorrect | 214 ms | 10372 KB | not a zalsequence |
4 | Incorrect | 210 ms | 10384 KB | not a zalsequence |
5 | Incorrect | 212 ms | 10400 KB | not a zalsequence |
6 | Incorrect | 255 ms | 10432 KB | not a zalsequence |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 5 ms | 10432 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Runtime error | 3 ms | 10432 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Runtime error | 3 ms | 10432 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Runtime error | 5 ms | 10432 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
5 | Runtime error | 4 ms | 10432 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
6 | Runtime error | 4 ms | 10432 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
7 | Runtime error | 3 ms | 10432 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
8 | Runtime error | 4 ms | 10432 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
9 | Runtime error | 3 ms | 10432 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
10 | Runtime error | 3 ms | 10432 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
11 | Runtime error | 3 ms | 10432 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
12 | Runtime error | 3 ms | 10432 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
13 | Runtime error | 3 ms | 10432 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
14 | Runtime error | 3 ms | 10432 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |