Submission #130092

# Submission time Handle Problem Language Result Execution time Memory
130092 2019-07-13T21:48:12 Z MohamedAhmed04 Brunhilda’s Birthday (BOI13_brunhilda) C++14
0 / 100
299 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] ;

vector<int>d[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].push_back(arr[i]) ;
		//}
	}
	dp[0] = 0 ;
	for(int i = 1 ; i < MAX ; ++i)
	{
		dp[i] = 0 ; 
		for(int j = 0 ; j < d[i].size() ; ++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 ;
}

Compilation message

brunhilda.cpp: In function 'int main()':
brunhilda.cpp:32:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int j = 0 ; j < d[i].size() ; ++j)
                   ~~^~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Runtime error 231 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Runtime error 226 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
3 Runtime error 232 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
4 Runtime error 224 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
5 Runtime error 231 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
6 Runtime error 231 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
7 Runtime error 229 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
8 Runtime error 227 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
9 Runtime error 233 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
10 Runtime error 228 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
11 Runtime error 237 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
12 Runtime error 225 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
13 Runtime error 228 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
14 Runtime error 228 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
15 Runtime error 228 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
16 Runtime error 227 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
17 Runtime error 233 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
18 Runtime error 226 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
# Verdict Execution time Memory Grader output
1 Runtime error 236 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Runtime error 283 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
3 Runtime error 276 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
4 Runtime error 228 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
5 Runtime error 264 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
6 Runtime error 227 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
7 Runtime error 235 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
8 Runtime error 226 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
9 Runtime error 266 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
10 Runtime error 265 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
11 Runtime error 252 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
12 Runtime error 230 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
13 Runtime error 264 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
14 Runtime error 229 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
15 Runtime error 250 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
16 Runtime error 285 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
17 Runtime error 227 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
18 Runtime error 285 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
# Verdict Execution time Memory Grader output
1 Runtime error 258 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Runtime error 261 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
3 Runtime error 254 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
4 Runtime error 233 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
5 Runtime error 285 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
6 Runtime error 232 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
7 Runtime error 286 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
8 Runtime error 259 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
9 Runtime error 253 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
10 Runtime error 235 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
11 Runtime error 229 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
12 Runtime error 233 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
13 Runtime error 244 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
14 Runtime error 229 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
15 Runtime error 231 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
16 Runtime error 232 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
17 Runtime error 254 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
18 Runtime error 289 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
19 Runtime error 228 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
20 Runtime error 272 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
21 Runtime error 230 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
22 Runtime error 290 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
23 Runtime error 245 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
24 Runtime error 228 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
25 Runtime error 229 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
26 Runtime error 230 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
27 Runtime error 283 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
28 Runtime error 228 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
29 Runtime error 299 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
30 Runtime error 267 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
31 Runtime error 235 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
32 Runtime error 230 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
33 Runtime error 231 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
34 Runtime error 293 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
35 Runtime error 231 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
36 Runtime error 293 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
37 Runtime error 287 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
38 Runtime error 234 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
39 Runtime error 230 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
40 Runtime error 237 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
41 Runtime error 291 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
42 Runtime error 233 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)