본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 30802번 웰컴 키트

by 현장 2024. 3. 29.

-Code

from math import ceil

n = int(input())
size = list(map(int, input().split()))
t, p = map(int, input().split())
res = sum([ceil(el / t) for el in size])

print(res)
print(sum(size) // p, sum(size) % p)