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

[백준/파이썬] 29683번 Рождественская лотерея

by 현장 2024. 2. 13.

-Code

n, a = map(int, input().split())
res = 0

for num in list(map(int, input().split())):
    res += num // a

print(res)