0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 04:25:25 +00:00
OI-codes/Luogu/T160507/T160507.cpp

15 lines
251 B
C++

#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;
}