Submission #20470

# Submission time Handle Problem Language Result Execution time Memory
20470 2017-02-12T01:23:35 Z sgc109(#57, sgc109) Can polan into space? (OJUZ11_space) C++11
0 / 100
53 ms 393696 KB
// #include <bits/stdc++.h>
#include <unordered_set>
// #include <unordered_map>
#include <vector>
#include <cstdio>
#include <iostream>
#include <cstring>
#include <queue>
#include <set>
#include <map>
#include <cmath>
#include <algorithm>
#include <utility>
#include <string>
#define REP(i,a,b) for(int i=a;i<=b;++i)
#define FOR(i,n) for(int i=0;i<n;++i)
#define pb push_back
#define all(v) (v).begin(),(v).end()
#define sz(v) ((int)(v).size())
#define inp1(a) scanf("%d",&a)
#define inp2(a,b) scanf("%d%d",&a,&b)
#define inp3(a,b,c) scanf("%d%d%d",&a,&b,&c)
#define inp4(a,b,c,d) scanf("%d%d%d%d",&a,&b,&c,&d)
#define inp5(a,b,c,d,e) scanf("%d%d%d%d%d",&a,&b,&c,&d,&e)z
using namespace std;
typedef long long ll;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef pair<int,int> pii;
typedef vector<pii> vii;
typedef vector<pll> vll;
typedef vector<vector<int> > vvi;
typedef pair<int,pair<int,int> > piii;
typedef vector<piii> viii;
const double EPSILON = 1e-9;
const double PI = acos(-1);
const int MOD = 1000000007;
const int INF = 0x3c3c3c3c;
const long long INFL = 0x3c3c3c3c3c3c3c3c;
const int MAX_N = 102;

struct Range{
	int l,r;
	bool operator<(Range& rhs){
		if(l==rhs.l) return r<rhs.r;
		return l<rhs.l;
	}
};
int N,M,a,b,E;
Range ranges[5003];
ll dp[5003][10003];
unordered_set<int> us;
ll solve(int pos, int last){
	if(pos==M) return last==E;
	if(ranges[pos].l!=0&&last<ranges[pos].l) return 0;
	ll& cache = dp[pos][last+1];
	if(cache!=-1) return cache;
	return cache = (solve(pos+1,max(last,ranges[pos].r))+solve(pos+1,last))%MOD;
}
int main() {
	memset(dp,-1,sizeof(dp));
	vi sorted;
	inp2(N,M);
	us.insert(1),sorted.pb(1);
	us.insert(N),sorted.pb(N);
	FOR(i,M){
		inp2(a,b);
		ranges[i]=Range{a,b};
		if(!us.count(a)) us.insert(a),sorted.pb(a);
		if(!us.count(b)) us.insert(b),sorted.pb(b);
	}
	sort(all(sorted));
	E=sz(sorted)-1;
	FOR(i,M) {
		ranges[i].l=lower_bound(all(sorted),ranges[i].l)-sorted.begin();
		ranges[i].r=lower_bound(all(sorted),ranges[i].r)-sorted.begin();
	}
	sort(ranges,ranges+M);
	// 좌표압축 + 정렬까지 완료

	printf("%lld", solve(0,-1));
	return 0;
}

Compilation message

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