Spadework 2020. 2. 15. 09:32

* Solved 기준 브론즈2 단순 풀이

import math
s = int(input())
l=map(int, input().split())
b,c = map(int, input().split())
for i in l:
	s += math.ceil((i-b)/c) if i-b>0 else 0
print(s)