답안 #130090

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
130090 2019-07-13T21:44:34 Z MohamedAhmed04 Brunhilda’s Birthday (BOI13_brunhilda) C++14
0 / 100
366 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< 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)
                   ~~^~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Runtime error 274 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Runtime error 240 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
3 Runtime error 237 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
4 Runtime error 339 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
5 Runtime error 258 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
6 Runtime error 273 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
7 Runtime error 234 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
8 Runtime error 237 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
9 Runtime error 235 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
10 Runtime error 239 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
11 Runtime error 237 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
12 Runtime error 312 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
13 Runtime error 234 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
14 Runtime error 237 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
15 Runtime error 246 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
16 Runtime error 266 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
17 Runtime error 292 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
18 Runtime error 342 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
# 결과 실행 시간 메모리 Grader output
1 Runtime error 356 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Runtime error 311 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
3 Runtime error 234 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
4 Runtime error 251 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
5 Runtime error 236 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
6 Runtime error 239 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
7 Runtime error 362 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
8 Runtime error 263 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
9 Runtime error 239 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
10 Runtime error 232 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
11 Runtime error 241 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
12 Runtime error 235 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
13 Runtime error 253 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
14 Runtime error 260 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
15 Runtime error 244 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
16 Runtime error 317 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
17 Runtime error 239 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
18 Runtime error 248 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
# 결과 실행 시간 메모리 Grader output
1 Runtime error 237 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Runtime error 241 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
3 Runtime error 238 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
4 Runtime error 241 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
5 Runtime error 366 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
6 Runtime error 237 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
7 Runtime error 274 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 236 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
10 Runtime error 245 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
11 Runtime error 245 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
12 Runtime error 236 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
13 Runtime error 236 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
14 Runtime error 240 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
15 Runtime error 234 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
16 Runtime error 235 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
17 Runtime error 241 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
18 Runtime error 239 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
19 Runtime error 240 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
20 Runtime error 235 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
21 Runtime error 238 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
22 Runtime error 238 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
23 Runtime error 352 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
24 Runtime error 292 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
25 Runtime error 283 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
26 Runtime error 234 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
27 Runtime error 239 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
28 Runtime error 247 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
29 Runtime error 270 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
30 Runtime error 325 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
31 Runtime error 250 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
32 Runtime error 245 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
33 Runtime error 306 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
34 Runtime error 271 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
35 Runtime error 245 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
36 Runtime error 236 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
37 Runtime error 352 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)
38 Runtime error 233 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
39 Runtime error 308 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 238 ms 262144 KB Execution killed with signal 9 (could be triggered by violating memory limits)
42 Runtime error 235 ms 262148 KB Execution killed with signal 9 (could be triggered by violating memory limits)