Submission #20541

# Submission time Handle Problem Language Result Execution time Memory
20541 2017-02-12T08:56:41 Z CYI(#67, choyi0521) Can polan into space? (OJUZ11_space) C++14
0 / 100
0 ms 12056 KB
#include<cstdio>
#include<algorithm>
using namespace std;
int n, r[200001], p[200001],cnt, fr[200001][4];
long long dp[200001][4],res;
void f(int x, int y) {
    if (!x) return;
    r[x] = y;
    f(x - 1, fr[x][y]);
}
int main() {
    freopen("input.txt", "r", stdin);
    int a, b, c;
    scanf("%d%d%d%d", &n,&a,&b,&c);
    if (n == 1) {
        printf("%d\n1", a);
        return 0;
    }
    dp[1][0] = a;
    dp[1][2] = b;
    dp[1][1] = dp[1][3] = -1e15;
    for (int i = 2; i <= n; i++) {
        scanf("%d%d%d", &a, &b, &c);
        if (dp[i - 1][2] > dp[i - 1][3]) {
            dp[i][0] = dp[i - 1][2] + a;
            fr[i][0] = 2;
            dp[i][2] = dp[i - 1][2] + b;
            fr[i][2] = 2;
        }
        else {
            dp[i][0] = dp[i - 1][3] + a;
            fr[i][0] = 3;
            dp[i][2] = dp[i - 1][3] + b;
            fr[i][2] = 3;
        }
        if (dp[i - 1][0] > dp[i - 1][1]) {
            dp[i][1] = dp[i - 1][0] + b;
            fr[i][1] = 0;
            dp[i][3] = dp[i - 1][0] + c;
            fr[i][3] = 0;
        }
        else {
            dp[i][1] = dp[i - 1][1] + b;
            fr[i][1] = 1;
            dp[i][3] = dp[i - 1][1] + c;
            fr[i][3] = 1;
        }
    }
    if (dp[n][0] > dp[n][1]) f(n, 0),res=dp[n][0];
    else f(n, 1), res = dp[n][1];
    for (int i = 1; i <= n; i++) if (!r[i]) p[i] = ++cnt;
    for (int i = n; i >= 1; i--) if (r[i] == 2) p[i] = ++cnt;
    for (int i = 1; i <= n; i++) if (r[i] == 1) p[i] = ++cnt;
    for (int i = 1; i <= n; i++) if (r[i] == 3) p[i] = ++cnt;
    printf("%lld\n", res);
    for (int i = 1; i <= n; i++) printf("%d ", p[i]);
    return 0;
}

Compilation message

space.cpp: In function 'int main()':
space.cpp:12:37: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
     freopen("input.txt", "r", stdin);
                                     ^
space.cpp:14:35: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d%d%d", &n,&a,&b,&c);
                                   ^
space.cpp:23:36: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d%d%d", &a, &b, &c);
                                    ^
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
2 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
3 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
4 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
5 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
6 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
7 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
8 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
9 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
10 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
11 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
12 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
13 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
14 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
15 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
16 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
17 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
18 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
19 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
20 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
21 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
2 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
3 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
4 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
5 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
6 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
7 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
8 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
9 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
10 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
11 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
12 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
13 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
14 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
15 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
16 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
17 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
18 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
19 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
20 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
21 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
22 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
23 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
24 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
25 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
26 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
27 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
28 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
29 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
30 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
31 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
32 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
33 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
34 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
35 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
36 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
37 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
2 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
3 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
4 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
5 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
6 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
7 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
8 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
9 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
10 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
11 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
12 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
13 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
14 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
15 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
16 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
17 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
18 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
19 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
20 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
21 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
22 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
23 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
24 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
25 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
26 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
27 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
28 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
29 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
30 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
31 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
32 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
33 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
34 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
35 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
36 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
37 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
38 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
39 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
40 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
41 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
42 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
43 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
44 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
45 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
46 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
47 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
48 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
49 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
50 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
51 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
52 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
53 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
2 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
3 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
4 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
5 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
6 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
7 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
8 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
9 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
10 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
11 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
12 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
13 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
14 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
15 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
16 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
17 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
18 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
19 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
20 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
21 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
22 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
23 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
24 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
25 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
26 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
27 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
28 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
29 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
30 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
31 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
32 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
33 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
34 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
35 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
36 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
37 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
38 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
39 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
40 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
41 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
42 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
43 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
44 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
45 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
46 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
47 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
48 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
49 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
50 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
51 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
52 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
53 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
54 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
55 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
56 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
57 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
58 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
59 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
60 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
61 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
62 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
63 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
64 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
65 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
66 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
67 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
68 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
69 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
2 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
3 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
4 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
5 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
6 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
7 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
8 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
9 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
10 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
11 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
12 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
13 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
14 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
15 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
16 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
17 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
18 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
19 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
20 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
21 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
22 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
23 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
24 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
25 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
26 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
27 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
28 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
29 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
30 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
31 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
32 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
33 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
34 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
35 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
36 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
37 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
38 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
39 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
40 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
41 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
42 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
43 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
44 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
45 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
46 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
47 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
48 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
49 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
50 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
51 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
52 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
53 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
54 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
55 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
56 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
57 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
58 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
59 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
60 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
61 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
62 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
63 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
64 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
65 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
66 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
67 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
68 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
69 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
70 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
71 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
72 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
73 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
74 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
75 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
76 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
77 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
78 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
79 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
80 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
81 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
82 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
83 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
84 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
85 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
86 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
87 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
88 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
89 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
90 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
91 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected
92 Incorrect 0 ms 12056 KB Unexpected end of file - int32 expected