-코드
from math import ceil
n, k = map(int, input().split())
arr = [[0, 0] for _ in range(6)]
answer = 0
for i in range(n):
s, y = map(int, input().split())
arr[y - 1][s - 1] += 1
for i in arr:
answer += ceil(i[0] / k) + ceil(i[1] / k)
print(answer)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[프로그래머스/파이썬] 하샤드 수 (0) | 2022.01.09 |
---|---|
[프로그래머스/파이썬] 내적 (0) | 2022.01.09 |
[프로그래머스/파이썬] [1차] 다트 게임 (0) | 2022.01.08 |
[프로그래머스/파이썬] 최소직사각형 (0) | 2022.01.08 |
[백준/파이썬] 1145번 적어도 대부분의 배수 (0) | 2022.01.08 |