#include <iostream>
#include <stdio.h>
#include <string.h>
#include <math.h>
int st[2][7];
int main()
{
int n, k, i, j, s, y;
double sum=0;
scanf("%d %d", &n, &k); // k는 방에 들어갈 인원수
for(i=1; i<= n; i++) {
scanf("%d %d", &s, &y); // 성별과 나이
st[s][y]++;
}
for(i=0; i<=1; i++) {
for(j=1; j<=6; j++) {
sum = sum + (ceil(st[i][j]/(double)k));
}
}
printf("%d\n", (int)sum);
return 0;
}
'코딩테스트' 카테고리의 다른 글
별 찍기 (점차 아래로 증가) (0) | 2024.09.16 |
---|---|
방 배정 (종올 기출 중등부) (3) | 2024.09.16 |
2차원 배열 출력 3 (0) | 2024.09.16 |
2차원 배열 출력 2 (0) | 2024.09.16 |
2차원 배열 출력 1 (위로 값 상승) (1) | 2024.09.16 |