mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
15 lines
291 B
C++
15 lines
291 B
C++
class Solution {
|
|
public:
|
|
int totalMoney(int n) {
|
|
auto monday = 1;
|
|
|
|
int total = 0;
|
|
for (; n >= 7; ++monday, n -= 7) {
|
|
total += 7 * (2 * monday + 7 - 1) / 2;
|
|
}
|
|
|
|
total += n * (monday + monday + n - 1) / 2;
|
|
|
|
return total;
|
|
}
|
|
};
|