-Code
n, a = map(int, input().split())
res = 0
for num in list(map(int, input().split())):
res += num // a
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 25206번 너의 평점은 (1) | 2024.02.15 |
---|---|
[백준/파이썬] 18198번 Basketball One-on-One (0) | 2024.02.14 |
[백준/파이썬] 30319번 Advance to Taoyuan Regional (1) | 2024.02.12 |
[백준/파이썬] 26566번 Pizza (1) | 2024.02.11 |
[백준/파이썬] 25828번 Corona Virus Testing (1) | 2024.02.10 |