0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-26 04:00:10 +00:00

15 lines
251 B
C++
Raw Normal View History

#include <bits/stdc++.h>
using namespace std;
int main() {
int n, m, v, a, ans = 0;
cin >> n >> v >> m >> a;
for (int i = 1; i <= n; i++) {
ans += v;
if (i % m == 0) v += a;
}
cout << ans << endl;
return 0;
}