a, b, c, d, e = map(int, input().split()) num = b - c l = [d] for i in range(2, 100000): if i % 10 != 0: l.append(l[-1]) else: if e <= l[-1]: l.append(l[-1] - e) else: l.append(l[-1]) print(sum(l[:num * a]))