Beakjoon&프로그래머스/파이썬
[백준/파이썬] 29683번 Рождественская лотерея
현장
2024. 2. 13. 15:36
-Code
n, a = map(int, input().split())
res = 0
for num in list(map(int, input().split())):
res += num // a
print(res)