https://www.acmicpc.net/problem/13300
PYTHON CODE
import math
N, K = map(int, input().split())
student = [[0] * 7 for _ in range(3)] #성별 / 학년별
for _ in range(N):
S, Y = map(int, input().split())
student[S][Y] += 1
room = 0
for i in student:
for j in i:
room += math.ceil(j / K)
print(room)
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#362 백준 파이썬 [1004] 어린 왕자 (0) | 2020.01.13 |
---|---|
#361 백준 파이썬 [1735] 분수 합 (0) | 2020.01.13 |
#359 백준 파이썬 [2605] 줄 세우기 (0) | 2020.01.13 |
#358 백준 파이썬 [2669] 직사각형 네개의 합집합의 면적 구하기 (0) | 2020.01.12 |
#357 백준 파이썬 [10026] 적록색약 - BFS (0) | 2020.01.10 |