728x90
반응형
SMALL
2015년도에는 이런 문제도 나왔었구나 싶은 문제...
지금은 난이도가 점점 지옥인데요....
import sys
n = int(sys.stdin.readline())
stores = list(map(int, sys.stdin.readline().strip().split()))
max_boss, max_worker = map(int, sys.stdin.readline().strip().split())
answer = 0
for customers in stores:
answer += 1
customers -= max_boss
if customers <= 0:
continue
if customers % max_worker == 0:
answer += customers // max_worker
else:
answer += (customers // max_worker) + 1
print(answer)
728x90
반응형
LIST
'코테' 카테고리의 다른 글
외주 수익 최대화하기 (0) | 2023.03.28 |
---|---|
14500 - 테트로미노 (1) | 2023.03.28 |
생명과학부 랩 인턴 (0) | 2023.03.28 |
2개의 사탕 (0) | 2023.03.28 |
시공의 돌풍 (0) | 2023.03.28 |