import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
// Press Shift twice to open the Search Everywhere dialog and type `show whitespaces`,
// then press Enter. You can now see whitespace characters in your code.
public class Main {
public static int n;
public static ArrayList<Integer> arryList = new ArrayList<>();
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
for (int i = 0; i < n; i++) {
arryList.add(sc.nextInt());
}
Collections.sort(arryList);
int result = 0; //총 그룹의 수
int count = 0; // 현재 그룹에 포함된 모험가의수
for (int i = 0; i < n; i++){
//공포도를 낮은 것부터 하나씩 확인하며 현재 그룹에 해당 모험가를 포함시키기
count +=1;
System.out.println(count + "확인");
if (count >= arryList.get(i)){
// 현재 그룹에 포함된 모험가의 수가 현재의 공포도 이상이라면, 그룹 결성
result +=1; //총 그룹의 수 증가시키기
count = 0; // 현재 그룹에 포함된 모험가의 수 초기화
}
// System.out.println(result);
}
}
}
5
2 3 1 2 2
1확인
1확인
2확인
1확인
2확인
정답 : 2