Datasets:

Modalities:
Image
Text
Formats:
parquet
Size:
< 1K
Tags:
code
Libraries:
Datasets
pandas
License:
File size: 715 Bytes
7acee6b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Hacker Cup 2017
// Qualification Round
// Lazy Loading
// Wesley May

import java.util.*;

public class LazyLoading 
{
	public static void main(String args[])
	{
		Scanner scan = new Scanner(System.in);
		int T = scan.nextInt();

		for(int ca=1;ca <= T;ca++)
		{
			int N = scan.nextInt();
			
			int[] W = new int[N];

			for(int i=0;i < N;i++)
				W[i] = scan.nextInt();

			Arrays.sort(W);
			
			int ans = 0;
			int L = 0;
			int R = N-1;

			while(L <= R)
			{
				int count = 1;
				while(count * W[R] < 50)
					count++;
		
				if(count <= R - L + 1)
					ans++;

				L += count - 1;
				R--;
			}

			System.out.println("Case #" + ca + ": " + ans);
		}
	}
}