Submission #130096

# Submission time Handle Problem Language Result Execution time Memory
130096 2019-07-13T22:05:35 Z MohamedAhmed04 Brunhilda’s Birthday (BOI13_brunhilda) C++14
0 / 100
256 ms 262148 KB
//WA submission to check if it will TLE or not.
#include <bits/stdc++.h>

using namespace std ;

const int MAX = 1e7 + 5 ;
const int OO = 1e9 ;

int dp[MAX] ;

int d[MAX][8] ;
int sz[MAX] ;

int main()
{
	int n , q ;
	cin>>n>>q ;
	int arr[n] ;
	for(int i = 0 ; i < n ; ++i)
	{
		cin>>arr[i] ;
		for(int j = arr[i] ; j < MAX ; j += arr[i])
		{
			if(j > (int)(1e7))
				break ;
			d[j][sz[j]] = arr[i] ;
			sz[j]++ ;
		}
	}
	dp[0] = 0 ;
	for(int i = 1 ; i < MAX ; ++i)
	{
		dp[i] = 0 ; 
		for(int j = 0 ; j < sz[i] ; ++j)
			dp[i] += d[i][j] / 2;
	}
	while(q--)
	{
		int x ;
		cin>>x ;
		if(dp[x] >= OO)
			cout<<"oo\n" ;
		else
			cout<<dp[x]<<"\n";
	}
	return 0 ;
}
# Verdict Execution time Memory Grader output
1 Runtime error 208 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Runtime error 214 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
3 Runtime error 218 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
4 Runtime error 213 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
5 Runtime error 200 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
6 Runtime error 209 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
7 Runtime error 216 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
8 Runtime error 240 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
9 Runtime error 218 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
10 Runtime error 220 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
11 Runtime error 217 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
12 Runtime error 227 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
13 Runtime error 219 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
14 Runtime error 220 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
15 Runtime error 223 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
16 Runtime error 223 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
17 Runtime error 224 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
18 Runtime error 234 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
# Verdict Execution time Memory Grader output
1 Runtime error 212 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Runtime error 215 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
3 Runtime error 217 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
4 Runtime error 217 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
5 Runtime error 215 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
6 Runtime error 215 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
7 Runtime error 208 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
8 Runtime error 202 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
9 Runtime error 211 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
10 Runtime error 217 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
11 Runtime error 220 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
12 Runtime error 214 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
13 Runtime error 206 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
14 Runtime error 212 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
15 Runtime error 214 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
16 Runtime error 214 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
17 Runtime error 217 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
18 Runtime error 209 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
# Verdict Execution time Memory Grader output
1 Runtime error 218 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Runtime error 215 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
3 Runtime error 252 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
4 Runtime error 221 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
5 Runtime error 256 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
6 Runtime error 216 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
7 Runtime error 208 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
8 Runtime error 213 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
9 Runtime error 214 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
10 Runtime error 237 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
11 Runtime error 240 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
12 Runtime error 215 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
13 Runtime error 222 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
14 Runtime error 216 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
15 Runtime error 221 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
16 Runtime error 220 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
17 Runtime error 214 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
18 Runtime error 220 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
19 Runtime error 208 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
20 Runtime error 243 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
21 Runtime error 222 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
22 Runtime error 220 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
23 Runtime error 225 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
24 Runtime error 208 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
25 Runtime error 213 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
26 Runtime error 220 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
27 Runtime error 215 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
28 Runtime error 211 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
29 Runtime error 208 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
30 Runtime error 236 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
31 Runtime error 206 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
32 Runtime error 210 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
33 Runtime error 207 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
34 Runtime error 206 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
35 Runtime error 208 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
36 Runtime error 222 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
37 Runtime error 226 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
38 Runtime error 215 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
39 Runtime error 201 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
40 Runtime error 215 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
41 Runtime error 219 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
42 Runtime error 222 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)