# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
64049 | 2018-08-03T08:52:18 Z | Just_Solve_The_Problem | Zalmoxis (BOI18_zalmoxis) | C++11 | 328 ms | 6692 KB |
#include <bits/stdc++.h> using namespace std; const int N = (int)1e6 + 7; const int inf = (int)1e9 + 7; int n, k; int a[N]; map < int, int > cnt; main() { scanf("%d %d", &n, &k); int mn = inf; for (int i = 1; i <= n; i++) { scanf("%d", &a[i]); mn = min(mn, a[i]); cnt[a[i]]++; } int cur = 1; while (1) { if (cnt[mn] & 1) { cur = mn; break; } cnt[mn + 1] = cnt[mn] / 2; cnt[mn] = 0; mn++; } for (int i = 1; i <= n; i++) { if (a[i] == cur - 1) { if (cur != -1) { printf("%d ", cur); cur = -1; } } printf("%d ", a[i]); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 258 ms | 6264 KB | not a zalsequence |
2 | Incorrect | 328 ms | 6488 KB | not a zalsequence |
3 | Incorrect | 232 ms | 6488 KB | not a zalsequence |
4 | Incorrect | 257 ms | 6488 KB | not a zalsequence |
5 | Incorrect | 276 ms | 6492 KB | not a zalsequence |
6 | Incorrect | 249 ms | 6600 KB | not a zalsequence |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 233 ms | 6600 KB | Unexpected end of file - int32 expected |
2 | Incorrect | 196 ms | 6676 KB | Unexpected end of file - int32 expected |
3 | Incorrect | 242 ms | 6676 KB | Unexpected end of file - int32 expected |
4 | Incorrect | 231 ms | 6676 KB | Unexpected end of file - int32 expected |
5 | Incorrect | 251 ms | 6676 KB | Unexpected end of file - int32 expected |
6 | Incorrect | 254 ms | 6692 KB | Unexpected end of file - int32 expected |
7 | Incorrect | 258 ms | 6692 KB | Unexpected end of file - int32 expected |
8 | Incorrect | 196 ms | 6692 KB | Unexpected end of file - int32 expected |
9 | Incorrect | 172 ms | 6692 KB | Unexpected end of file - int32 expected |
10 | Incorrect | 77 ms | 6692 KB | Unexpected end of file - int32 expected |
11 | Incorrect | 183 ms | 6692 KB | Unexpected end of file - int32 expected |
12 | Incorrect | 4 ms | 6692 KB | Unexpected end of file - int32 expected |
13 | Incorrect | 2 ms | 6692 KB | Unexpected end of file - int32 expected |
14 | Incorrect | 2 ms | 6692 KB | Unexpected end of file - int32 expected |