Posts [알고리즘] 백준 13458 - 시험 감독
Post
Cancel

[알고리즘] 백준 13458 - 시험 감독


문제

13458 - 시험 감독


접근

시험장당 총 감독관 한명은 고정이다.

그리고 남은 학생을 감당할 수 있는만큼 부 감독관을 넣으면 된다.

코드

  • 파이썬 코드
1
2
3
4
5
6
7
8
9
10
11
12
n = int(input())
arr = list(map(int, input().split(' ')))
mainS, subS = map(int, input().split(' '))
ans = 0
for student in arr:
    student -= mainS
    if student > 0:
        ans += student // subS
        ans += (0 if student % subS == 0 else 1)
    ans += 1

print(ans)  


This post is licensed under CC BY 4.0 by the author.