반응형
배열의 활용에 대한 문제입니다/
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// 여0 남1
int[][] students = new int[2][6];
int N = sc.nextInt();
int K = sc.nextInt();
for (int i=0; i<N; i++)
students[sc.nextInt()][sc.nextInt()-1]++;
int room = 0;
for (int[] i : students)
for (int j : i)
if (j!=0) room += j%K == 0 ? j/K : j/K+1;
System.out.print(room);
}
}
반응형
'Algorithm' 카테고리의 다른 글
백준 1406번 에디터 [ Java ] (0) | 2020.12.25 |
---|---|
백준 1919번 애너그램 만들기 [ Java ] (0) | 2020.12.25 |
백준 11328번 Strfry [ Java ] (0) | 2020.12.25 |
백준 10807번 개수 세기 [ Java ] (0) | 2020.12.25 |
백준 10808번 알파벳 개수 [ Java ] (0) | 2020.12.25 |