1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/cpp/calculate-money-in-leetcode-bank.cpp

16 lines
293 B
C++
Raw Normal View History

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