a, b = map(int, input().split()) n = int(input()) print(sum([(a+b)-i%(a+b) for i in list(map(int, input().split())) if i%(a+b) >= a]))
兩行解